Files
railsgoat/db/migrate/20140315002730_create_pays.rb
T
2018-01-29 10:53:13 -05:00

14 lines
286 B
Ruby

# frozen_string_literal: true
class CreatePays < ActiveRecord::Migration[4.2]
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