mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 16:21:41 +00:00
llevar el registro de las recolecciones de estadísticas
This commit is contained in:
parent
a7ae7f8e8d
commit
df2b66afe8
2 changed files with 15 additions and 0 deletions
3
app/models/stat.rb
Normal file
3
app/models/stat.rb
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
class Stat < ApplicationRecord; end
|
12
db/migrate/20211008201239_create_stats.rb
Normal file
12
db/migrate/20211008201239_create_stats.rb
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
# Una tabla que lleva el recuento de recolección de estadísticas, solo
|
||||||
|
# es necesario para saber cuándo se hicieron, si se hicieron y usar como
|
||||||
|
# caché.
|
||||||
|
class CreateStats < ActiveRecord::Migration[6.1]
|
||||||
|
def change
|
||||||
|
create_table :stats do |t|
|
||||||
|
t.timestamps
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue