mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
9 lines
277 B
Ruby
9 lines
277 B
Ruby
class Category < ApplicationRecord
|
|
|
|
has_many :questions
|
|
belongs_to :parent_categories, class_name: 'Category', foreign_key: :parent_category_id
|
|
has_many :child_categories, class_name: 'Category', foreign_key: :parent_category_id
|
|
|
|
validates :name, presence: true
|
|
|
|
end
|