diff options
author | mkanat%kerio.com <> | 2005-04-23 11:11:51 +0200 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-04-23 11:11:51 +0200 |
commit | cc8d6d3943c9c3cf82e6b1e13c1479a0cef77554 (patch) | |
tree | 3c08e212a93c636cfe96753f17b6b42dada291b6 /Bugzilla/DB | |
parent | 372be50dde891c803392ed565ba93d5f61190394 (diff) | |
download | bugzilla-cc8d6d3943c9c3cf82e6b1e13c1479a0cef77554.tar.gz bugzilla-cc8d6d3943c9c3cf82e6b1e13c1479a0cef77554.tar.xz |
Bug 287986: Bugzilla::DB::Mysql needs a way to read in a Schema object from the disk
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=Tomas.Kopal, a=justdave
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r-- | Bugzilla/DB/Mysql.pm | 6 |
1 files changed, 6 insertions, 0 deletions
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 ##################################################################### |