1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-11 05:54:15 +01:00
2020-03-25 12:35:09 +01:00

8 lines
224 B
Ruby

class Tag < ApplicationRecord
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