* Repro * Fix * Update signage * Create tagging system * Add tags to transaction imports * Build tagging UI * Cleanup * More cleanup
5 lines
98 B
Ruby
5 lines
98 B
Ruby
class Tagging < ApplicationRecord
|
|
belongs_to :tag
|
|
belongs_to :taggable, polymorphic: true
|
|
end
|