summaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2015-10-20 16:36:28 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2015-10-20 16:36:28 +0000
commite3e0f5440d0c92d42694f0567b53b4259a6d0473 (patch)
tree0f416156a2ed9a799da4012a95a081a069bef319 /db
parent252fde10d655923d7b25bf1ad6bc9084dec505c3 (diff)
downloadredmine-e3e0f5440d0c92d42694f0567b53b4259a6d0473.tar.gz
redmine-e3e0f5440d0c92d42694f0567b53b4259a6d0473.zip
Extend Filesize in the attachments table for files with size > 2GB (#10672).
git-svn-id: http://svn.redmine.org/redmine/trunk@14709 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20151020182334_change_attachments_filesize_limit_to_8.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20151020182334_change_attachments_filesize_limit_to_8.rb b/db/migrate/20151020182334_change_attachments_filesize_limit_to_8.rb
new file mode 100644
index 000000000..a58e57183
--- /dev/null
+++ b/db/migrate/20151020182334_change_attachments_filesize_limit_to_8.rb
@@ -0,0 +1,9 @@
+class ChangeAttachmentsFilesizeLimitTo8 < ActiveRecord::Migration
+ def self.up
+ change_column :attachments, :filesize, :integer, :limit => 8, :default => 0, :null => false
+ end
+
+ def self.down
+ change_column :attachments, :filesize, :integer, :limit => 4, :default => 0, :null => false
+ end
+end