From b42469e3632fe96b0475fa00f07d6ca5abc0e2dc Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 1 Apr 2014 16:13:16 +0800 Subject: Bug 981756: add support for "bigint unsigned" to db/schema and update bz_schema to reflect the current state --- Bugzilla/DB/Schema/Mysql.pm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Bugzilla/DB/Schema/Mysql.pm') 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', -- cgit v1.2.3-24-g4f1b