13 lines
251 B
Ruby
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
|