class CreateLicitacaoUnidadeOrcamentariaPorEtps < ActiveRecord::Migration[5.2]
  def change
    create_table :licitacao_unidades_orcamentarias_por_etp do |t|
      t.references :etp, null: false, foreign_key: { to_table: :licitacao_etps }, index: { name: 'index_etp_on_unidade_orcamentaria_por_etps' }
      t.references :unidade_orcamentaria, null: false, foreign_key: { to_table: :loa_unidades_orcamentarias }, index: { name: 'index_unidade_orcamentaria_on_unidade_orcamentaria_por_etps' }
      t.integer :responsavel_do_etp_id
      t.timestamps
    end
  end
end