forgeplus/app/models/user_interest.rb

19 lines
382 B
Ruby
Raw Normal View History

2020-11-23 15:35:03 +08:00
# == 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)
#
2020-03-09 00:40:16 +08:00
class UserInterest < ApplicationRecord
belongs_to :user
2020-04-23 11:08:29 +08:00
# belongs_to :repertoire
2020-11-23 15:35:03 +08:00
end