提交 69bfe12a 编写于 作者: T Tiger

Default clusters namespace_per_environment to true

上级 cc3c1a66
---
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.
先完成此消息的编辑!
想要评论请 注册