class AddEmployeeFieldToCovidFormSections < ActiveRecord::Migration[6.0]
  def change
    add_column :covid_form_sections, :employee_field, :boolean, null: false, default: false,
      after: :sequence
  end
end
