class CreateLoaPropostasOrcamentariasSetoriais < ActiveRecord::Migration[5.2]
  def change
    create_table :loa_propostas_orcamentarias_setoriais do |t|
      t.bigint :fonte_da_cota_orcamentaria_id
      t.bigint :orcamento_da_despesa_id
      t.decimal :valor, precision: 18, scale: 2

      t.timestamps
    end
  end
end
