Files
railsgoat/db/migrate/20130531143853_create_work_infos.rb
T
2017-12-05 18:46:21 -06:00

16 lines
305 B
Ruby

# frozen_string_literal: true
class CreateWorkInfos < ActiveRecord::Migration
def change
create_table :work_infos do |t|
t.integer :user_id
t.string :income
t.string :bonuses
t.integer :years_worked
t.string :SSN
t.date :DoB
t.timestamps
end
end
end