This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2019-06-28 06:54:10 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: custom_emoji_categories
|
|
|
|
#
|
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# name :string
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
|
|
|
class CustomEmojiCategory < ApplicationRecord
|
|
|
|
has_many :emojis, class_name: 'CustomEmoji', foreign_key: 'category_id', inverse_of: :category
|
2019-09-09 13:44:17 -07:00
|
|
|
|
|
|
|
validates :name, presence: true, uniqueness: true
|
2019-06-28 06:54:10 -07:00
|
|
|
end
|