summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2015-07-09 08:24:47 +0200
committerByron Jones <glob@mozilla.com>2015-07-09 08:24:47 +0200
commit28ac958d3cf5951a2e75d53581d6ddd4ded30119 (patch)
tree7414367c927ef0784ba5dd25426ed7f83d5f5053 /Bugzilla/DB
parentcd60ea7d685158bf9b024ccf940af3835a6a769c (diff)
downloadbugzilla-28ac958d3cf5951a2e75d53581d6ddd4ded30119.tar.gz
bugzilla-28ac958d3cf5951a2e75d53581d6ddd4ded30119.tar.xz
Bug 1180570: store attachment size in the database
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r--Bugzilla/DB/Schema.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm
index bb874cd27..63bc1c034 100644
--- a/Bugzilla/DB/Schema.pm
+++ b/Bugzilla/DB/Schema.pm
@@ -512,6 +512,8 @@ use constant ABSTRACT_SCHEMA => {
DEFAULT => 'FALSE'},
isprivate => {TYPE => 'BOOLEAN', NOTNULL => 1,
DEFAULT => 'FALSE'},
+ attach_size => {TYPE => 'INT4', NOTNULL => 1,
+ DEFAULT => 0},
],
INDEXES => [
attachments_bug_id_idx => ['bug_id'],