9 lines
178 B
Ruby
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
|