mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +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
|