class HackUserLastestCode < ApplicationRecord # 编程题最新代码 belongs_to :hack, counter_cache: true scope :mine, ->(author_id){ where(user_id: author_id)} scope :passed, -> {where(status: 1)} end