Files
railsgoat/db/migrate/20140315002730_create_pays.rb
T
robbiepaul 298610b5f6
CI / test (3.4.1) (push) Has been cancelled
Initial commit (history cleared)
2026-04-29 11:21:39 +01: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