summaryrefslogtreecommitdiff
path: root/db/migrate/20171116135628_add_environment_scope_to_clusters.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20171116135628_add_environment_scope_to_clusters.rb')
-rw-r--r--db/migrate/20171116135628_add_environment_scope_to_clusters.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/db/migrate/20171116135628_add_environment_scope_to_clusters.rb b/db/migrate/20171116135628_add_environment_scope_to_clusters.rb
new file mode 100644
index 00000000000..cce757095dd
--- /dev/null
+++ b/db/migrate/20171116135628_add_environment_scope_to_clusters.rb
@@ -0,0 +1,15 @@
+class AddEnvironmentScopeToClusters < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ disable_ddl_transaction!
+
+ def up
+ add_column_with_default(:clusters, :environment_scope, :string, default: '*')
+ end
+
+ def down
+ remove_column(:clusters, :environment_scope)
+ end
+end