summaryrefslogtreecommitdiff
path: root/db/migrate/20171214144320_add_store_column_to_uploads.rb
diff options
context:
space:
mode:
authorMicaël Bergeron <mbergeron@gitlab.com>2018-02-27 14:17:42 -0500
committerMicaël Bergeron <mbergeron@gitlab.com>2018-03-01 10:40:40 -0500
commita3e46d9b68ebe2b4c78425fa3a77ebcb3133eef0 (patch)
tree346e047efbdb21194f6cb79df70bc328950e4f4e /db/migrate/20171214144320_add_store_column_to_uploads.rb
parent40a3b467f25df62fab4b92a3700846f06ef7534c (diff)
downloadgitlab-ce-a3e46d9b68ebe2b4c78425fa3a77ebcb3133eef0.tar.gz
rework the migration to use the EE ones
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