Files
fizzy/app/models/account.rb
T
2024-09-18 13:06:30 -04:00

7 lines
160 B
Ruby

class Account < ApplicationRecord
has_many :users, dependent: :destroy
has_many :projects, dependent: :destroy
has_many :bubbles, through: :projects
end