2022-08-22 02:12:19 +02:00
|
|
|
CREATE TABLE IF NOT EXISTS timers (
|
|
|
|
id bigserial PRIMARY KEY,
|
|
|
|
name text NOT NULL,
|
|
|
|
text text NOT NULL,
|
|
|
|
channel text NOT NULL,
|
|
|
|
repeat text NOT NULL
|
|
|
|
);
|
2022-08-22 03:37:02 +02:00
|
|
|
|
|
|
|
INSERT INTO timers (name,"text",channel,repeat) VALUES
|
2022-08-26 02:01:43 +02:00
|
|
|
('nourylul-60m','timer every 60 minutes :)','nourylul','60m'),
|
|
|
|
('nourybot-60m','timer every 60 minutes :)','nourybot','60m'),
|
|
|
|
('nourybot-1h','timer every 1 hour :)','nourybot','1h'),
|
2023-04-12 07:07:23 +02:00
|
|
|
('xnoury-60m','timer every 420 minutes :)','xnoury','420m'),
|
2023-03-03 22:22:38 +01:00
|
|
|
('xnoury-1h','timer every 1 hour :)','xnoury','1h'),
|
2023-04-12 07:07:23 +02:00
|
|
|
('xnoury-15m','180 minutes timer :)','xnoury','180m');
|
2022-08-22 03:37:02 +02:00
|
|
|
|