Files
2025-11-01 05:27:18 +10:00

17 lines
370 B
Python

from data import Registry, Table, RowModel
from data.columns import String, Integer, Timestamp
class Hyperfocuser(RowModel):
_tablename_ = "hyperfocused"
_cache_ = {}
profileid = Integer(primary=True)
started_at = Timestamp()
ends_at = Timestamp()
started_in = Integer()
class HyperfocusData(Registry):
hyperfocused = Hyperfocuser.table