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 /extensions | |
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 'extensions')
-rw-r--r-- | extensions/Review/Extension.pm | 2 | ||||
-rw-r--r-- | extensions/TryAutoLand/Extension.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/extensions/Review/Extension.pm b/extensions/Review/Extension.pm index 16429ccdd..c22f0a652 100644 --- a/extensions/Review/Extension.pm +++ b/extensions/Review/Extension.pm @@ -656,7 +656,7 @@ sub db_schema_abstract_schema { }, attachment_id => { - TYPE => 'INT5', + TYPE => 'INT3', REFERENCES => { TABLE => 'attachments', COLUMN => 'attach_id', diff --git a/extensions/TryAutoLand/Extension.pm b/extensions/TryAutoLand/Extension.pm index 8aaadff95..40dbb70d9 100644 --- a/extensions/TryAutoLand/Extension.pm +++ b/extensions/TryAutoLand/Extension.pm @@ -61,7 +61,7 @@ sub db_schema_abstract_schema { $args->{'schema'}->{'autoland_attachments'} = { FIELDS => [ attach_id => { - TYPE => 'INT5', + TYPE => 'INT3', NOTNULL => 1, PRIMARYKEY => 1, REFERENCES => { |