From cc8d6d3943c9c3cf82e6b1e13c1479a0cef77554 Mon Sep 17 00:00:00 2001 From: "mkanat%kerio.com" <> Date: Sat, 23 Apr 2005 09:11:51 +0000 Subject: Bug 287986: Bugzilla::DB::Mysql needs a way to read in a Schema object from the disk Patch By Max Kanat-Alexander r=Tomas.Kopal, a=justdave --- Bugzilla/DB/Mysql.pm | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Bugzilla/DB/Mysql.pm') diff --git a/Bugzilla/DB/Mysql.pm b/Bugzilla/DB/Mysql.pm index 08d72e4d3..2ca0f52e6 100644 --- a/Bugzilla/DB/Mysql.pm +++ b/Bugzilla/DB/Mysql.pm @@ -198,6 +198,12 @@ sub bz_rollback_transaction { die("Attempt to rollback transaction on DB without transaction support"); } + +sub _bz_get_initial_schema { + my ($self) = @_; + return $self->_bz_build_schema_from_disk(); +} + ##################################################################### # Database Setup ##################################################################### -- cgit v1.2.3-24-g4f1b