summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB/Schema
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2014-04-01 10:13:16 +0200
committerByron Jones <glob@mozilla.com>2014-04-01 10:13:16 +0200
commitb42469e3632fe96b0475fa00f07d6ca5abc0e2dc (patch)
tree4a2e057225d7f756b30ba8acbea015482044c648 /Bugzilla/DB/Schema
parent72e6a203547667b442c876f9cbfa9cce72e8f814 (diff)
downloadbugzilla-b42469e3632fe96b0475fa00f07d6ca5abc0e2dc.tar.gz
bugzilla-b42469e3632fe96b0475fa00f07d6ca5abc0e2dc.tar.xz
Bug 981756: add support for "bigint unsigned" to db/schema and update bz_schema to reflect the current state
Diffstat (limited to 'Bugzilla/DB/Schema')
-rw-r--r--Bugzilla/DB/Schema/Mysql.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/DB/Schema/Mysql.pm b/Bugzilla/DB/Schema/Mysql.pm
index 5fc50a986..f2450abf1 100644
--- a/Bugzilla/DB/Schema/Mysql.pm
+++ b/Bugzilla/DB/Schema/Mysql.pm
@@ -108,10 +108,12 @@ sub _initialize {
INT2 => 'smallint',
INT3 => 'mediumint',
INT4 => 'integer',
+ INT5 => 'bigint unsigned',
SMALLSERIAL => 'smallint auto_increment',
MEDIUMSERIAL => 'mediumint auto_increment',
INTSERIAL => 'integer auto_increment',
+ BIGSERIAL => 'bigint unsigned auto_increment',
TINYTEXT => 'tinytext',
MEDIUMTEXT => 'mediumtext',