Files
voicelog-plugin/plugin/data.py
2025-10-24 18:53:34 +10:00

17 lines
383 B
Python

from data import Registry, RowModel, Table
from data.columns import String, Timestamp, Integer, Bool
class VoiceLogGuild(RowModel):
_tablename_ = "voicelog_guilds"
_cache_ = {}
guildid = Integer(primary=True)
webhook_url = String()
created_at = Timestamp()
_timestamp = Timestamp()
class VoiceLogData(Registry):
voicelog_guilds = VoiceLogGuild.table