diff options
author | Byron Jones <glob@mozilla.com> | 2014-04-08 07:43:34 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-04-08 07:43:34 +0200 |
commit | 9afd000c14104e548c324af085d46ae48ba3d688 (patch) | |
tree | 018af06ea747da8cba9abd8945296437152b6a13 /Bugzilla/DB/Schema | |
parent | db77cd059ce3b3e94d54fc16a22e68f00cdba809 (diff) | |
download | bugzilla-9afd000c14104e548c324af085d46ae48ba3d688.tar.gz bugzilla-9afd000c14104e548c324af085d46ae48ba3d688.tar.xz |
revert 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.pm | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Bugzilla/DB/Schema/Mysql.pm b/Bugzilla/DB/Schema/Mysql.pm index f2450abf1..5fc50a986 100644 --- a/Bugzilla/DB/Schema/Mysql.pm +++ b/Bugzilla/DB/Schema/Mysql.pm @@ -108,12 +108,10 @@ 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', |