class CreateLicitacaoOperacoesDeCreditoDoProjeto < ActiveRecord::Migration[4.2]
  def change
    create_table :licitacao_operacoes_de_credito_do_projeto do |t|

      t.integer :projeto_id
      t.integer :operacao_de_credito_id

      t.timestamps null: false
    end
  end
end
