class CreateTransparenciaDocumentos < ActiveRecord::Migration[5.2]
  def change
    create_table :transparencia_documentos do |t|
      t.integer :tipo
      t.string :titulo
      t.integer :exercicio
      t.string :anexo_file_name
      t.string :anexo_content_type
      t.integer :anexo_file_size
      t.datetime :anexo_updated_at

      t.timestamps
    end
  end
end
