mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
11 lines
250 B
Ruby
11 lines
250 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Allows to sort plans into categories. Plans are sorted by multiple criterion,
|
||
|
# ordered as follow:
|
||
|
# - group
|
||
|
# - plan_category
|
||
|
# - plan
|
||
|
class PlanCategory < ApplicationRecord
|
||
|
has_many :plan, dependent: :nullify
|
||
|
end
|