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

20180420061925_add_acme_challenge_columns_for_pages_domain.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 71b28cc89c4e16682c99c1aa3a455ae7b12d323c (plain)
1
2
3
4
5
6
7
8
9
10
class AddAcmeChallengeColumnsForPagesDomain < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :pages_domains, :acme_challenge_token, :text
    add_column :pages_domains, :acme_challenge_response, :text
  end
end