summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170621102400_add_stage_id_index_to_builds.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20170621102400_add_stage_id_index_to_builds.rb')
-rw-r--r--db/post_migrate/20170621102400_add_stage_id_index_to_builds.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/db/post_migrate/20170621102400_add_stage_id_index_to_builds.rb b/db/post_migrate/20170621102400_add_stage_id_index_to_builds.rb
new file mode 100644
index 00000000000..ac61b5c84a8
--- /dev/null
+++ b/db/post_migrate/20170621102400_add_stage_id_index_to_builds.rb
@@ -0,0 +1,17 @@
+class AddStageIdIndexToBuilds < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ ##
+ # Improved in 20170703102400_add_stage_id_foreign_key_to_builds.rb
+ #
+
+ def up
+ # noop
+ end
+
+ def down
+ # noop
+ end
+end