7 lines
173 B
Ruby
7 lines
173 B
Ruby
class AddPagesDomainEnabledUntil < ActiveRecord::Migration
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
add_column :pages_domains, :enabled_until, :datetime_with_timezone
|
|
end
|
|
end
|