mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:50:14 +08: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
|