about summary refs log tree commit diff
path: root/db/migrate/20171125031751_add_invite_id_to_users.rb
blob: 2ff6c343084b49924035cf81781d3a8a081dcd57 (plain) (blame)
1
2
3
4
5
class AddInviteIdToUsers < ActiveRecord::Migration[5.2]
  def change
    safety_assured { add_reference :users, :invite, null: true, default: nil, foreign_key: { on_delete: :nullify }, index: false }
  end
end