Files
fizzy/app/models/account.rb
T
Jeffrey Hardy 774fbb6060 Scope tags by account
We may want these to be bucket-scoped eventually, but they should
be scoped by something for now.
2024-10-01 16:25:18 -04:00

11 lines
217 B
Ruby

class Account < ApplicationRecord
include Joinable
has_many :users, dependent: :destroy
has_many :buckets, dependent: :destroy
has_many :bubbles, through: :buckets
has_many :tags, dependent: :destroy
end