notebook/db/migrate/20170331001122_create_referral_codes.rb
2018-07-05 01:10:52 -05:00

11 lines
238 B
Ruby

class CreateReferralCodes < ActiveRecord::Migration[4.2]
def change
create_table :referral_codes do |t|
t.references :user, index: true, foreign_key: true
t.string :code
t.timestamps null: false
end
end
end