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
2db62942
Commit
2db62942
authored
Nov 17, 2020
by
Mark Chao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add cloud_license_enabled setting
parent
a40a68f9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
0 deletions
+16
-0
changelogs/unreleased/273011-setting.yml
changelogs/unreleased/273011-setting.yml
+5
-0
db/migrate/20201117054609_add_cloud_license_enabled_to_settings.rb
...e/20201117054609_add_cloud_license_enabled_to_settings.rb
+9
-0
db/schema_migrations/20201117054609
db/schema_migrations/20201117054609
+1
-0
db/structure.sql
db/structure.sql
+1
-0
No files found.
changelogs/unreleased/273011-setting.yml
0 → 100644
View file @
2db62942
---
title
:
Add cloud_license_enabled column to application_settings
merge_request
:
47882
author
:
type
:
added
db/migrate/20201117054609_add_cloud_license_enabled_to_settings.rb
0 → 100644
View file @
2db62942
# frozen_string_literal: true
class
AddCloudLicenseEnabledToSettings
<
ActiveRecord
::
Migration
[
6.0
]
DOWNTIME
=
false
def
change
add_column
:application_settings
,
:cloud_license_enabled
,
:boolean
,
null:
false
,
default:
false
end
end
db/schema_migrations/20201117054609
0 → 100644
View file @
2db62942
119afd73a58c247522446bc9693ece5c83a25c279e4dd7dfb942f7febd5b7a82
\ No newline at end of file
db/structure.sql
View file @
2db62942
...
...
@@ -9345,6 +9345,7 @@ CREATE TABLE application_settings (
encrypted_cloud_license_auth_token
text
,
encrypted_cloud_license_auth_token_iv
text
,
secret_detection_revocation_token_types_url
text
,
cloud_license_enabled
boolean
DEFAULT
false
NOT
NULL
,
CONSTRAINT
app_settings_registry_exp_policies_worker_capacity_positive
CHECK
((
container_registry_expiration_policies_worker_capacity
>=
0
)),
CONSTRAINT
check_2dba05b802
CHECK
((
char_length
(
gitpod_url
)
<=
255
)),
CONSTRAINT
check_51700b31b5
CHECK
((
char_length
(
default_branch_name
)
<=
255
)),
...
...
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