mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:57:36 +08:00
10 lines
230 B
Ruby
10 lines
230 B
Ruby
class RemoveNotNullFromEmail < ActiveRecord::Migration[4.2]
|
|
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
|