774fbb6060
We may want these to be bucket-scoped eventually, but they should be scoped by something for now.
7 lines
139 B
Ruby
7 lines
139 B
Ruby
class Tag < ApplicationRecord
|
|
belongs_to :account
|
|
|
|
has_many :taggings, dependent: :destroy
|
|
has_many :bubbles, through: :taggings
|
|
end
|