class CreateLicitacaoAcoesDoEtp < ActiveRecord::Migration[5.2]
  def change
    create_table :licitacao_acoes_do_etp do |t|
      t.references :etp, null: false, foreign_key: { to_table: :licitacao_etps }
      t.references :acao, null: false, foreign_key: { to_table: :pca_acoes }
      t.timestamps
    end
  end
end