class CreatePatrimonioImportacoesDeDadosPatrimoniais < ActiveRecord::Migration[5.2]
  def change
    create_table :patrimonio_importacoes_de_dados_patrimoniais do |t|
      t.date     :data_de_importacao
      t.string   :nome
      t.integer  :status
      t.string   :documento_file_name
      t.string   :documento_content_type
      t.integer  :documento_file_size
      t.datetime :documento_updated_at

      t.timestamps
    end
  end
end
