You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # == Schema Information
- #
- # Table name: user_interests
- #
- # id :integer not null, primary key
- # user_id :integer
- # repertoire_id :integer
- #
- # Indexes
- #
- # index_user_interests_on_repertoire_id (repertoire_id)
- # index_user_interests_on_user_id (user_id)
- #
-
- class UserInterest < ApplicationRecord
- belongs_to :user
- # belongs_to :repertoire
- end
|