14 lines
286 B
Ruby
14 lines
286 B
Ruby
# frozen_string_literal: true
|
|
class CreateRetirements < ActiveRecord::Migration[4.2]
|
|
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
|