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