You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
educoder/app/models/hack_user_lastest_code.rb

9 lines
214 B

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