added a pay controller and model

This commit is contained in:
cktricky
2014-03-14 20:29:14 -04:00
parent 419b5bbfdc
commit 2c8781ebc1
11 changed files with 67 additions and 4 deletions
+12
View File
@@ -0,0 +1,12 @@
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