class CreateContabilidadeControleDePagamentos < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_controle_de_pagamentos do |t|
      t.date :data
      t.integer :unidade_orcamentaria_id
      t.integer :fonte_de_recurso_id
      t.integer :orcamento_id

      t.timestamps
    end
  end
end
