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
path: root/db
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-06-28 12:29:04 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-07-07 16:07:29 +0300
commit16ae7b7a49314b2525f3f32c07dd8a4891fa74e1 (patch)
tree1b76f1850c224b05f05c6cd13c9edf1c0a0752eb /db
parentafd5c34d9f1bf5ad7d85209dfecbaf28c6c12496 (diff)
Add initial stage_id background migration files
Diffstat (limited to 'db')
-rw-r--r--db/post_migrate/20170628080858_migrate_stage_id_reference_in_background.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/post_migrate/20170628080858_migrate_stage_id_reference_in_background.rb b/db/post_migrate/20170628080858_migrate_stage_id_reference_in_background.rb
new file mode 100644
index 00000000000..2eaa798d0aa
--- /dev/null
+++ b/db/post_migrate/20170628080858_migrate_stage_id_reference_in_background.rb
@@ -0,0 +1,12 @@
+class MigrateStageIdReferenceInBackground < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ def up
+ end
+
+ def down
+ # noop
+ end
+end