2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-13 15:59:12 -04:00
|
|
|
class SharedDraft < ActiveRecord::Base
|
|
|
|
belongs_to :topic
|
|
|
|
belongs_to :category
|
|
|
|
end
|
2018-03-28 14:40:26 -04:00
|
|
|
|
|
|
|
# == 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
|
2019-05-02 18:34:12 -04:00
|
|
|
# id :bigint not null, primary key
|
2018-03-28 14:40:26 -04:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_shared_drafts_on_category_id (category_id)
|
|
|
|
# index_shared_drafts_on_topic_id (topic_id) UNIQUE
|
|
|
|
#
|