Files
railsgoat/db/migrate/20130524222129_create_retirements.rb
T
2013-05-24 19:15:36 -04:00

13 lines
251 B
Ruby

class CreateRetirements < ActiveRecord::Migration
def change
create_table :retirements do |t|
t.string :total
t.string :employee_contrib
t.string :employer_contrib
t.integer :user_id
t.timestamps
end
end
end