Files
croccybot/bot/modules/study/timers/data.py
Conatum dd4fa985df (timer): UI improvements.
Add `pomodoro_channel` guild setting.
Add customisable per-timer text channel.
Improve `reaction_message` flow.
Change algorithm for updating vc name.
Add `stage` and `pattern` vc name substitutions.
2022-01-10 17:02:14 +02:00

16 lines
292 B
Python

from data import RowTable
timers = RowTable(
'timers',
('channelid', 'guildid',
'text_channelid',
'focus_length', 'break_length',
'inactivity_threshold',
'last_started',
'text_channelid',
'channel_name', 'pretty_name'),
'channelid',
cache={}
)