summaryrefslogtreecommitdiff
path: root/db/migrate/20161006104309_add_state_to_environment.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20161006104309_add_state_to_environment.rb')
-rw-r--r--db/migrate/20161006104309_add_state_to_environment.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20161006104309_add_state_to_environment.rb b/db/migrate/20161006104309_add_state_to_environment.rb
deleted file mode 100644
index c51dada9bca..00000000000
--- a/db/migrate/20161006104309_add_state_to_environment.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-class AddStateToEnvironment < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- disable_ddl_transaction!
-
- DOWNTIME = false
-
- def up
- add_column_with_default(:environments, :state, :string, default: :available)
- end
-
- def down
- remove_column(:environments, :state)
- end
-end