17 lines
371 B
Ruby
17 lines
371 B
Ruby
|
|
class CreateEmployerSetupProcesses < ActiveRecord::Migration[7.2]
|
||
|
|
def change
|
||
|
|
create_table :employer_setup_processes do |t|
|
||
|
|
t.string :employer_name
|
||
|
|
t.string :group_number
|
||
|
|
t.string :effect_date
|
||
|
|
t.string :logo_filename
|
||
|
|
t.string :form_method
|
||
|
|
t.string :status
|
||
|
|
t.string :current_step
|
||
|
|
|
||
|
|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|