summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2006-12-19 15:41:46 +0100
committermkanat%bugzilla.org <>2006-12-19 15:41:46 +0100
commitbffa52bd4899458aca4456717dd11786cc585640 (patch)
tree1b48ba4454a232d3f2158f20b089421a5c5d7061 /Bugzilla/Install
parentb7c87a7217ea157c1305526e6d62c94d5ef8d36f (diff)
downloadbugzilla-bffa52bd4899458aca4456717dd11786cc585640.tar.gz
bugzilla-bffa52bd4899458aca4456717dd11786cc585640.tar.xz
Bug 339385: Make Bugzilla::Version use Bugzilla::Object
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=myk
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r--Bugzilla/Install/DB.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index 5c3c1485a..d78db3f5d 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -514,6 +514,9 @@ sub update_table_definitions {
{TYPE => 'INT2', NOTNULL => 1, DEFAULT => '0'});
$dbh->bz_add_column('longdescs', 'extra_data', {TYPE => 'varchar(255)'});
+ $dbh->bz_add_column('versions', 'id',
+ {TYPE => 'MEDIUMSERIAL', NOTNULL => 1, PRIMARYKEY => 1});
+
################################################################
# New --TABLE-- changes should go *** A B O V E *** this point #
################################################################