2022-06-28 05:53:20 +00:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: related_categories
|
|
|
|
#
|
2022-07-04 14:59:44 +00:00
|
|
|
# id :bigint not null, primary key
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# category_id :bigint
|
2022-06-28 05:53:20 +00:00
|
|
|
# related_category_id :bigint
|
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_related_categories_on_category_id_and_related_category_id (category_id,related_category_id) UNIQUE
|
|
|
|
# index_related_categories_on_related_category_id_and_category_id (related_category_id,category_id) UNIQUE
|
|
|
|
#
|
|
|
|
class RelatedCategory < ApplicationRecord
|
|
|
|
belongs_to :related_category, class_name: 'Category'
|
|
|
|
belongs_to :category, class_name: 'Category'
|
|
|
|
end
|