mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 15:41:42 +00:00
10 lines
306 B
Ruby
10 lines
306 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Registran cuándo fue la última recolección de datos.
|
|
class Stat < ApplicationRecord
|
|
# XXX: Los intervalos van en orden de mayor especificidad a menor
|
|
INTERVALS = %i[day month year].freeze
|
|
RESOURCES = %i[builds space_used build_time].freeze
|
|
|
|
belongs_to :site
|
|
end
|