Files
railsgoat/db/migrate/20130531143853_create_work_infos.rb
robbiepaul 298610b5f6
CI / test (3.4.1) (push) Has been cancelled
Initial commit (history cleared)
2026-04-29 11:21:39 +01:00

16 lines
310 B
Ruby

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