class CreateContabilidadeRestosAPagarCancelados < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_restos_a_pagar_cancelados do |t|
      t.integer :empenho_id
      t.integer :cancelamento_de_resto_a_pagar_id

      t.timestamps
    end
  end
end
