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
fbc6ea38
Commit
fbc6ea38
authored
Mar 20, 2020
by
Vladimir Shushlin
Committed by
Toon Claes
Mar 25, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add auto_ssl_failed to pages domains
parent
2109ab64
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
1 deletion
+28
-1
changelogs/unreleased/30146-let-s-encrypt-integration-doesn-t-scale-and-does-not-give-any-feedb.yml
...integration-doesn-t-scale-and-does-not-give-any-feedb.yml
+5
-0
db/migrate/20200320123839_add_letsencrypt_errors_to_pages_domains.rb
...20200320123839_add_letsencrypt_errors_to_pages_domains.rb
+20
-0
db/structure.sql
db/structure.sql
+3
-1
No files found.
changelogs/unreleased/30146-let-s-encrypt-integration-doesn-t-scale-and-does-not-give-any-feedb.yml
0 → 100644
View file @
fbc6ea38
---
title
:
Add auto_ssl_failed to pages_domains
merge_request
:
27671
author
:
type
:
added
db/migrate/20200320123839_add_letsencrypt_errors_to_pages_domains.rb
0 → 100644
View file @
fbc6ea38
# frozen_string_literal: true
# See https://docs.gitlab.com/ee/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class
AddLetsencryptErrorsToPagesDomains
<
ActiveRecord
::
Migration
[
6.0
]
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
add_column_with_default
:pages_domains
,
:auto_ssl_failed
,
:boolean
,
default:
false
end
def
down
remove_column
:pages_domains
,
:auto_ssl_failed
end
end
db/structure.sql
View file @
fbc6ea38
...
...
@@ -4449,7 +4449,8 @@ CREATE TABLE public.pages_domains (
certificate_source
smallint
DEFAULT
0
NOT
NULL
,
wildcard
boolean
DEFAULT
false
NOT
NULL
,
usage
smallint
DEFAULT
0
NOT
NULL
,
scope
smallint
DEFAULT
2
NOT
NULL
scope
smallint
DEFAULT
2
NOT
NULL
,
auto_ssl_failed
boolean
DEFAULT
false
NOT
NULL
);
CREATE
SEQUENCE
public
.
pages_domains_id_seq
...
...
@@ -12750,6 +12751,7 @@ INSERT INTO "schema_migrations" (version) VALUES
(
'20200318175008'
),
(
'20200319123041'
),
(
'20200319203901'
),
(
'20200320123839'
),
(
'20200323075043'
),
(
'20200323122201'
),
(
'20200324115359'
);
...
...
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