discourse/db/migrate/20180508142711_remove_invite_passthrough_hours.rb
2018-05-09 08:14:45 +05:30

10 lines
229 B
Ruby

class RemoveInvitePassthroughHours < ActiveRecord::Migration[5.1]
def up
execute "DELETE FROM site_settings WHERE name = 'invite_passthrough_hours'"
end
def down
raise ActiveRecord::IrreversibleMigration
end
end