diff options
| author | Nick Thomas <nick@gitlab.com> | 2019-06-06 13:20:16 +0000 |
|---|---|---|
| committer | Nick Thomas <nick@gitlab.com> | 2019-06-06 13:20:16 +0000 |
| commit | a05f86cef14dc24df655705e1976c95ebf31fd1c (patch) | |
| tree | 378f59649da7e96297eac454a56e80cd2dfb7096 /db/schema.rb | |
| parent | 0a5020b494e88719fb8b8d6a5039b450a98081fb (diff) | |
| parent | 3aab750d076774b2adef9493171f29ea3b4523d6 (diff) | |
| download | gitlab-ce-a05f86cef14dc24df655705e1976c95ebf31fd1c.tar.gz | |
Merge branch 'pages-domain_ssl-valid-period' into 'master'
Add certificate valid time to pages domain table
See merge request gitlab-org/gitlab-ce!28743
Diffstat (limited to 'db/schema.rb')
| -rw-r--r-- | db/schema.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb index fcf9e397ac1..a144c3a97ff 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -1583,6 +1583,8 @@ ActiveRecord::Schema.define(version: 20190530154715) do t.datetime_with_timezone "enabled_until" t.datetime_with_timezone "remove_at" t.boolean "auto_ssl_enabled", default: false, null: false + t.datetime_with_timezone "certificate_valid_not_before" + t.datetime_with_timezone "certificate_valid_not_after" 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 |
