debian-mirror-gitlab/db/migrate/20180216120020_allow_domain_verification_to_be_disabled.rb

8 lines
227 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
class AllowDomainVerificationToBeDisabled < ActiveRecord::Migration[4.2]
2018-03-17 18:26:18 +05:30
DOWNTIME = false
def change
add_column :application_settings, :pages_domain_verification_enabled, :boolean, default: true, null: false
end
end