mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-06 21:24:23 +08:00
7 lines
146 B
Ruby
7 lines
146 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Favorite < ApplicationRecord
|
|
belongs_to :user
|
|
belongs_to :team
|
|
belongs_to :item, polymorphic: true
|
|
end
|