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

20180216120000_add_pages_domain_verification.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b7cae922854d9d7566242a3c5b126e12527eff7 (plain)
1
2
3
4
5
6
7
8
class AddPagesDomainVerification < ActiveRecord::Migration
  DOWNTIME = false

  def change
    add_column :pages_domains, :verified_at, :datetime_with_timezone
    add_column :pages_domains, :verification_code, :string
  end
end