Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
04add70f
Commit
04add70f
authored
Dec 21, 2020
by
Hordur Freyr Yngvason
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change clusters.helm_major_version default to 3
parent
f589d1a8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
1 deletion
+16
-1
changelogs/unreleased/change-clusters-helm-major-version-default-to-3.yml
...eased/change-clusters-helm-major-version-default-to-3.yml
+5
-0
db/migrate/20201221213415_change_clusters_helm_major_version_default_to_3.rb
...213415_change_clusters_helm_major_version_default_to_3.rb
+9
-0
db/schema_migrations/20201221213415
db/schema_migrations/20201221213415
+1
-0
db/structure.sql
db/structure.sql
+1
-1
No files found.
changelogs/unreleased/change-clusters-helm-major-version-default-to-3.yml
0 → 100644
View file @
04add70f
---
title
:
Change clusters.helm_major_version default to
3
merge_request
:
50399
author
:
type
:
changed
db/migrate/20201221213415_change_clusters_helm_major_version_default_to_3.rb
0 → 100644
View file @
04add70f
# 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
db/schema_migrations/20201221213415
0 → 100644
View file @
04add70f
8c123da6a380524c7269ffc67ea0e533a415d3c6eddf96cee4025ea152fc7582
\ No newline at end of file
db/structure.sql
View file @
04add70f
...
...
@@ -11125,7 +11125,7 @@ CREATE TABLE clusters (
management_project_id
integer
,
cleanup_status
smallint
DEFAULT
1
NOT
NULL
,
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
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment