mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07:00
9 lines
273 B
Ruby
9 lines
273 B
Ruby
class Category < ApplicationRecord
|
|
|
|
has_many :questions
|
|
belongs_to :parent_category, 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
|