class CreatePatrimonioCessaoDeBensPatrimoniais < ActiveRecord::Migration[5.2]
  def change
    create_table :patrimonio_cessao_de_bens_patrimoniais do |t|
      t.date :data_da_cessao
      t.string :numero_do_termo
      t.integer :status
      t.bigint :beneficente_id
      t.string :responsavel

      t.timestamps
    end
  end
end
