discourse/db/migrate/20180508142711_remove_invite_passthrough_hours.rb
Arpit Jalan 83245aa508 FIX: better handling of invite links after they are redeemed
FIX: deprecate invite_passthrough_hours setting
2018-05-08 20:17:57 +05:30

6 lines
169 B
Ruby

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