custom_emoji_category.rb 474 B

1234567891011121314151617
  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: custom_emoji_categories
  5. #
  6. # id :bigint(8) not null, primary key
  7. # name :string
  8. # created_at :datetime not null
  9. # updated_at :datetime not null
  10. #
  11. class CustomEmojiCategory < ApplicationRecord
  12. has_many :emojis, class_name: 'CustomEmoji', foreign_key: 'category_id', inverse_of: :category, dependent: nil
  13. validates :name, presence: true, uniqueness: true
  14. end