2018-05-08 10:42:58 -04:00
|
|
|
class RemoveInvitePassthroughHours < ActiveRecord::Migration[5.1]
|
2018-05-08 22:44:45 -04:00
|
|
|
def up
|
2018-05-08 10:42:58 -04:00
|
|
|
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
|
2018-05-08 10:42:58 -04:00
|
|
|
end
|