diff options
| author | Vladimir Shushlin <vshushlin@gitlab.com> | 2019-06-24 20:35:12 +0000 |
|---|---|---|
| committer | Nick Thomas <nick@gitlab.com> | 2019-06-24 20:35:12 +0000 |
| commit | a7764d0e845db524f2913b6c11c88dfd121ec522 (patch) | |
| tree | 8e84742f692e05e56102b7cfd7d20462ba1c8305 /db/migrate | |
| parent | bf8f5b8f446c504ca13ef2a8cf28cc3faeaf3253 (diff) | |
| download | gitlab-ce-a7764d0e845db524f2913b6c11c88dfd121ec522.tar.gz | |
Renew Let's Encrypt certificates
Add index for pages domain ssl auto renewal
Add PagesDomain.needs_ssl_renewal scope
Add cron worker for ssl renewal
Add worker for ssl renewal
Add pages ssl renewal worker queues settings
Diffstat (limited to 'db/migrate')
| -rw-r--r-- | db/migrate/20190607145325_add_pages_domains_ssl_renew_index.rb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/db/migrate/20190607145325_add_pages_domains_ssl_renew_index.rb b/db/migrate/20190607145325_add_pages_domains_ssl_renew_index.rb new file mode 100644 index 00000000000..7167accbf1e --- /dev/null +++ b/db/migrate/20190607145325_add_pages_domains_ssl_renew_index.rb @@ -0,0 +1,25 @@ +# frozen_string_literal: true + +# See http://doc.gitlab.com/ce/development/migration_style_guide.html +# for more information on how to write migrations for GitLab. + +class AddPagesDomainsSslRenewIndex < ActiveRecord::Migration[5.1] + include Gitlab::Database::MigrationHelpers + + # Set this constant to true if this migration requires downtime. + DOWNTIME = false + + INDEX_NAME = 'index_pages_domains_need_auto_ssl_renewal' + + disable_ddl_transaction! + + def up + add_concurrent_index(:pages_domains, [:certificate_source, :certificate_valid_not_after], + where: "auto_ssl_enabled = #{::Gitlab::Database.true_value}", name: INDEX_NAME) + end + + def down + remove_concurrent_index(:pages_domains, [:certificate_source, :certificate_valid_not_after], + where: "auto_ssl_enabled = #{::Gitlab::Database.true_value}", name: INDEX_NAME) + end +end |
