Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew Blessing <drew@gitlab.com>2016-01-29 17:28:58 +0300
committerDrew Blessing <drew@gitlab.com>2016-01-29 17:28:58 +0300
commit873f336ecc64f958079589e2144860da9d79a76b (patch)
treed21c7f11fa6ba632a82d2913838a0da7dc58e072 /db/migrate
parent227728712ec5b469a36dbaf8c9511098b4817741 (diff)
Increase LFS objects size column
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20160128233227_change_lfs_objects_size_column.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20160128233227_change_lfs_objects_size_column.rb b/db/migrate/20160128233227_change_lfs_objects_size_column.rb
new file mode 100644
index 00000000000..e7fd1f71777
--- /dev/null
+++ b/db/migrate/20160128233227_change_lfs_objects_size_column.rb
@@ -0,0 +1,5 @@
+class ChangeLfsObjectsSizeColumn < ActiveRecord::Migration
+ def change
+ change_column :lfs_objects, :size, :integer, limit: 8
+ end
+end