educoder/app/models/sub_repertoire.rb

6 lines
155 B

6 years ago
class SubRepertoire < ApplicationRecord
belongs_to :repertoire
6 years ago
has_many :tag_repertoires, ->{order(updated_at: :desc)} ,:dependent => :destroy
6 years ago
end