mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
10 lines
225 B
Ruby
10 lines
225 B
Ruby
|
class RemoveNotNullFromEmail < ActiveRecord::Migration
|
||
|
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
|