提交 98bb78a4 编写于 作者: S Shinya Maeda

Add environment_scope to cluster table

上级 6369db01
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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册