13 lines
251 B
Ruby
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
|