5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-03 23:45:45 +00:00

usar menos intervalos

las horas y semanas generan demasiados rollups
This commit is contained in:
f 2021-10-20 12:58:19 -03:00
parent cc3535097e
commit 1497113f73

View file

@ -1,6 +1,6 @@
# frozen_string_literal: true
class Stat < ApplicationRecord
INTERVALS = %i[hour day week month year].freeze
INTERVALS = %i[year month day].freeze
RESOURCES = %i[builds space_used build_time].freeze
end