summaryrefslogtreecommitdiff
path: root/db/migrate/20170526185602_add_stage_id_to_ci_builds.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170526185602_add_stage_id_to_ci_builds.rb')
-rw-r--r--db/migrate/20170526185602_add_stage_id_to_ci_builds.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20170526185602_add_stage_id_to_ci_builds.rb b/db/migrate/20170526185602_add_stage_id_to_ci_builds.rb
deleted file mode 100644
index 6958557d118..00000000000
--- a/db/migrate/20170526185602_add_stage_id_to_ci_builds.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-class AddStageIdToCiBuilds < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- def up
- add_column :ci_builds, :stage_id, :integer
- end
-
- def down
- remove_column :ci_builds, :stage_id, :integer
- end
-end