discourse/db/migrate/20140711143146_remove_not_n...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
261 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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