Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20190524071727_add_ssl_valid_period_to_pages_domain.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18544dcb6d3c24f2ec682b3fcabe6f0c0c716959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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 AddSslValidPeriodToPagesDomain < ActiveRecord::Migration[5.1]
  include Gitlab::Database::MigrationHelpers

  # Set this constant to true if this migration requires downtime.
  DOWNTIME = false

  def change
    add_column :pages_domains, :certificate_valid_not_before, :datetime_with_timezone
    add_column :pages_domains, :certificate_valid_not_after, :datetime_with_timezone
  end
end