class CreateDocumentosDoUsuario < ActiveRecord::Migration[5.2]
  def change
    create_table :documentos_do_usuario do |t|
      t.integer :usuario_id
      t.string :titulo
      t.string :anexo_file_name
      t.string :anexo_content_type
      t.integer :anexo_file_size
      t.date :data_de_anexo

      t.timestamps
    end
  end
end
