# frozen_string_literal: true # == Schema Information # # Table name: topics # # id :bigint not null, primary key # description :text default(""), not null # icon_data :text # name :string default(""), not null # created_at :datetime not null # updated_at :datetime not null # class Topic < ApplicationRecord include TopicIconUploader::Attachment(:icon) end