mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00:00
6 lines
210 B
Ruby
6 lines
210 B
Ruby
class AddInviteIdToUsers < ActiveRecord::Migration[5.1]
|
|
def change
|
|
safety_assured { add_reference :users, :invite, null: true, default: nil, foreign_key: { on_delete: :nullify }, index: false }
|
|
end
|
|
end
|