discourse/db/migrate/20180508142711_remove_invit...

10 lines
229 B
Ruby
Raw Normal View History

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