Files
railsgoat/db/migrate/20140315002730_create_pays.rb
T
2014-03-14 20:29:14 -04:00

13 lines
251 B
Ruby

class CreatePays < ActiveRecord::Migration
def change
create_table :pays do |t|
t.integer :user_id
t.string :bank_account_num
t.string :bank_routing_num
t.integer :percent_of_deposit
t.timestamps
end
end
end