diff options
author | Byron Jones <glob@mozilla.com> | 2014-04-01 10:13:16 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-04-01 10:13:16 +0200 |
commit | b42469e3632fe96b0475fa00f07d6ca5abc0e2dc (patch) | |
tree | 4a2e057225d7f756b30ba8acbea015482044c648 /extensions | |
parent | 72e6a203547667b442c876f9cbfa9cce72e8f814 (diff) | |
download | bugzilla-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 '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 8d069e8e6..634e7c9cd 100644 --- a/extensions/Review/Extension.pm +++ b/extensions/Review/Extension.pm @@ -646,7 +646,7 @@ sub db_schema_abstract_schema { }, attachment_id => { - TYPE => 'INT3', + TYPE => 'INT5', REFERENCES => { TABLE => 'attachments', COLUMN => 'attach_id', diff --git a/extensions/TryAutoLand/Extension.pm b/extensions/TryAutoLand/Extension.pm index 40dbb70d9..8aaadff95 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 => 'INT3', + TYPE => 'INT5', NOTNULL => 1, PRIMARYKEY => 1, REFERENCES => { |