774fbb6060
We may want these to be bucket-scoped eventually, but they should be scoped by something for now.
11 lines
217 B
Ruby
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
|