提交 84064567 编写于 作者: A Ash McKenzie

Merge branch '65251-default-clusters-namespace_per_environment-column-to-true' into 'master'

Default clusters namespace_per_environment to true

See merge request gitlab-org/gitlab-ce!32139
---
title: Default clusters namespace_per_environment column to true
merge_request: 32139
author:
type: other
# frozen_string_literal: true
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class ChangeClustersNamespacePerEnvironmentDefault < ActiveRecord::Migration[5.2]
DOWNTIME = false
def change
change_column_default :clusters, :namespace_per_environment, from: false, to: true
end
end
......@@ -935,7 +935,7 @@ ActiveRecord::Schema.define(version: 2019_08_28_083843) do
t.integer "cluster_type", limit: 2, default: 3, null: false
t.string "domain"
t.boolean "managed", default: true, null: false
t.boolean "namespace_per_environment", default: false, null: false
t.boolean "namespace_per_environment", default: true, null: false
t.index ["enabled"], name: "index_clusters_on_enabled"
t.index ["user_id"], name: "index_clusters_on_user_id"
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册