discourse/app/models/custom_emoji.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
760 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class CustomEmoji < ActiveRecord::Base
belongs_to :upload
has_many :upload_references, as: :target, dependent: :destroy
validates :name, presence: true, uniqueness: true
validates :upload_id, presence: true
after_save do
if saved_change_to_upload_id?
UploadReference.ensure_exist!(upload_ids: [self.upload_id], target: self)
end
end
end
2017-03-22 02:26:53 -04:00
# == Schema Information
#
# Table name: custom_emojis
#
# id :integer not null, primary key
# name :string not null
# upload_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
2020-04-28 06:29:39 -04:00
# group :string(20)
2017-03-22 02:26:53 -04:00
#
# Indexes
#
# index_custom_emojis_on_name (name) UNIQUE
#