class CreateLicitacaoMedidasMitigadorasDoEtp < ActiveRecord::Migration[5.2]
  def change
    create_table :licitacao_medidas_mitigadoras_do_etp do |t|
      t.references :etp, null: false, foreign_key: { to_table: :licitacao_etps }
      t.text :medida
      t.timestamps
    end
  end
end