7 lines
129 B
Ruby
7 lines
129 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Search < ApplicationRecord
|
|
belongs_to :user, polymorphic: true
|
|
belongs_to :exercise
|
|
end
|