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

20180216120030_add_pages_domain_enabled_until.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3347bb6deaab03ff47961c71bafedeacd06c8458 (plain)
1
2
3
4
5
6
7
class AddPagesDomainEnabledUntil < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    add_column :pages_domains, :enabled_until, :datetime_with_timezone
  end
end