mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
8 lines
225 B
Ruby
8 lines
225 B
Ruby
class Tag < ActiveRecord::Base
|
|
has_many :user_tags, dependent: :destroy
|
|
has_many :users, through: :user_tags
|
|
|
|
has_many :availability_tags, dependent: :destroy
|
|
has_many :availabilities, through: :availability_tags
|
|
end
|