scinote-web/app/models/favorite.rb
2025-04-28 13:09:22 +02:00

7 lines
146 B
Ruby

# frozen_string_literal: true
class Favorite < ApplicationRecord
belongs_to :user
belongs_to :team
belongs_to :item, polymorphic: true
end