Commit 4b0b6cb6 authored by Patrick Bair's avatar Patrick Bair

Merge branch 'change-clusters-helm-major-version-default-to-3' into 'master'

Change clusters.helm_major_version default to 3

See merge request gitlab-org/gitlab!50399
parents 2870d277 04add70f
---
title: Change clusters.helm_major_version default to 3
merge_request: 50399
author:
type: changed
# frozen_string_literal: true
class ChangeClustersHelmMajorVersionDefaultTo3 < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
change_column_default(:clusters, :helm_major_version, from: 2, to: 3)
end
end
8c123da6a380524c7269ffc67ea0e533a415d3c6eddf96cee4025ea152fc7582
\ No newline at end of file
...@@ -11128,7 +11128,7 @@ CREATE TABLE clusters ( ...@@ -11128,7 +11128,7 @@ CREATE TABLE clusters (
management_project_id integer, management_project_id integer,
cleanup_status smallint DEFAULT 1 NOT NULL, cleanup_status smallint DEFAULT 1 NOT NULL,
cleanup_status_reason text, cleanup_status_reason text,
helm_major_version integer DEFAULT 2 NOT NULL helm_major_version integer DEFAULT 3 NOT NULL
); );
CREATE TABLE clusters_applications_cert_managers ( CREATE TABLE clusters_applications_cert_managers (
......
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