class HackUserCode < ApplicationRecord
  # 用户编程题的信息
  belongs_to :hack

  scope :created_order, ->{ order("created_at desc")}
end