discourse/db/migrate/20180508142711_remove_invite_passthrough_hours.rb

10 lines
229 B
Ruby
Raw Normal View History

class RemoveInvitePassthroughHours < ActiveRecord::Migration[5.1]
2018-05-09 10:44:45 +08:00
def up
execute "DELETE FROM site_settings WHERE name = 'invite_passthrough_hours'"
end
2018-05-09 10:44:45 +08:00
def down
raise ActiveRecord::IrreversibleMigration
end
end