class CreateLicitacaoAcoesDaOperacaoDeCreditoDoProjeto < ActiveRecord::Migration[4.2]
  def change
    create_table :licitacao_acoes_da_operacao_de_credito_do_projeto do |t|

      t.integer :operacao_de_credito_do_projeto_id
      t.integer :componente_da_operacao_de_credito_id
      t.integer :acao_do_componente_id

      t.timestamps null: false
    end
  end
end
