1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/db/migrate/20171125031751_add_invite_id_to_users.rb

6 lines
210 B
Ruby
Raw Normal View History

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