Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
ef58fc73f61c
Commit
26115073
authored
Apr 12, 2019
by
Vladimir Shushlin
Browse files
Add auto_ssl_enabled for pages domains
parent
b6bf18739d68
Changes
2
Hide whitespace changes
Inline
Side-by-side
db/migrate/20190322164830_add_auto_ssl_enabled_to_pages_domain.rb
0 → 100644
View file @
ef58fc73
# frozen_string_literal: true
class
AddAutoSslEnabledToPagesDomain
<
ActiveRecord
::
Migration
[
5.0
]
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
add_column_with_default
:pages_domains
,
:auto_ssl_enabled
,
:boolean
,
default:
false
end
def
down
remove_column
:pages_domains
,
:auto_ssl_enabled
end
end
db/schema.rb
View file @
ef58fc73
...
...
@@ -1548,6 +1548,7 @@
t
.
string
"verification_code"
,
null:
false
t
.
datetime_with_timezone
"enabled_until"
t
.
datetime_with_timezone
"remove_at"
t
.
boolean
"auto_ssl_enabled"
,
default:
false
,
null:
false
t
.
index
[
"domain"
],
name:
"index_pages_domains_on_domain"
,
unique:
true
,
using: :btree
t
.
index
[
"project_id"
,
"enabled_until"
],
name:
"index_pages_domains_on_project_id_and_enabled_until"
,
using: :btree
t
.
index
[
"project_id"
],
name:
"index_pages_domains_on_project_id"
,
using: :btree
...
...
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