rewrite (core): Refactor lion* classes.

This commit is contained in:
2023-03-08 11:57:53 +02:00
parent cf7558d030
commit 65a34852a0
7 changed files with 294 additions and 0 deletions

View File

@@ -67,6 +67,7 @@ class CoreData(Registry, name="core"):
CREATE TABLE user_config(
userid BIGINT PRIMARY KEY,
timezone TEXT,
show_global_stats BOOLEAN,
topgg_vote_reminder BOOLEAN,
avatar_hash TEXT,
name TEXT,
@@ -84,6 +85,7 @@ class CoreData(Registry, name="core"):
userid = Integer(primary=True)
timezone = String()
show_global_stats = Bool()
topgg_vote_reminder = Bool()
avatar_hash = String()
name = String()