summaryrefslogtreecommitdiff
path: root/db/migrate/20171214144320_add_store_column_to_uploads.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20171214144320_add_store_column_to_uploads.rb')
-rw-r--r--db/migrate/20171214144320_add_store_column_to_uploads.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/migrate/20171214144320_add_store_column_to_uploads.rb b/db/migrate/20171214144320_add_store_column_to_uploads.rb
new file mode 100644
index 00000000000..e35798e2c41
--- /dev/null
+++ b/db/migrate/20171214144320_add_store_column_to_uploads.rb
@@ -0,0 +1,12 @@
+# See http://doc.gitlab.com/ce/development/migration_style_guide.html
+# for more information on how to write migrations for GitLab.
+
+class AddStoreColumnToUploads < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ def change
+ add_column(:uploads, :store, :integer)
+ end
+end