mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-02-11 05:54:15 +01:00
8 lines
160 B
Ruby
8 lines
160 B
Ruby
|
class Group < ActiveRecord::Base
|
||
|
has_many :plans
|
||
|
|
||
|
has_many :trainings_pricings, dependent: :destroy
|
||
|
|
||
|
has_many :machines_pricings, dependent: :destroy
|
||
|
end
|