Files
fizzy/app/models/account.rb
T
2024-09-24 15:32:44 -04:00

9 lines
178 B
Ruby

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