discourse/app/models/topic_invite.rb

26 lines
641 B
Ruby
Raw Normal View History

class TopicInvite < ActiveRecord::Base
belongs_to :topic
belongs_to :invite
validates_presence_of :topic_id
validates_presence_of :invite_id
validates_uniqueness_of :topic_id, scope: :invite_id
end
2013-05-23 22:35:14 -04:00
# == Schema Information
#
# Table name: topic_invites
#
# id :integer not null, primary key
# topic_id :integer not null
# invite_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
2013-05-23 22:35:14 -04:00
#
# Indexes
#
# index_topic_invites_on_invite_id (invite_id)
# index_topic_invites_on_topic_id_and_invite_id (topic_id,invite_id) UNIQUE
#