class Statistic < ApplicationRecord
  belongs_to :user

  scope :daily_downloads, -> { where(operation_label_id: 2, created_at: Time.now.beginning_of_day..Time.now) }
end
