discourse/db/migrate/20140711143146_remove_not_n...

10 lines
230 B
Ruby
Raw Normal View History

class RemoveNotNullFromEmail < ActiveRecord::Migration[4.2]
2014-07-14 11:56:26 -04:00
def up
execute "ALTER TABLE invites ALTER COLUMN email DROP NOT NULL"
end
def down
execute "ALTER TABLE invites ALTER COLUMN email SET NOT NULL"
end
end