2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00
discourse/app/models/shared_draft.rb

21 lines
492 B
Ruby
Raw Normal View History

class SharedDraft < ActiveRecord::Base
belongs_to :topic
belongs_to :category
end
2018-03-29 00:10:26 +05:30
# == Schema Information
#
# Table name: shared_drafts
#
# topic_id :integer not null
# category_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
# id :integer not null, primary key
#
# Indexes
#
# index_shared_drafts_on_category_id (category_id)
# index_shared_drafts_on_topic_id (topic_id) UNIQUE
#