Commit aaf156eb authored by Kamil Trzciński's avatar Kamil Trzciński

Merge branch 'feature/sm/40147-add-environment_scope-to-cluster-table' into 'master'

Add environment_scope to cluster table

See merge request gitlab-org/gitlab-ce!15419
parents 3e558d8d 98bb78a4
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
......@@ -523,6 +523,7 @@ ActiveRecord::Schema.define(version: 20171121144800) do
t.datetime_with_timezone "updated_at", null: false
t.boolean "enabled", default: true
t.string "name", null: false
t.string "environment_scope", default: "*", null: false
end
add_index "clusters", ["enabled"], name: "index_clusters_on_enabled", using: :btree
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment