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