class CreateObraComponentesDaOperacaoDeCredito < ActiveRecord::Migration[4.2]
  def change
    create_table :obra_componentes_da_operacao_de_credito do |t|

      t.integer :operacao_de_credito_id
      t.integer :codigo
      t.string :descricao

      t.timestamps null: false
    end
  end
end
