From 8ea406ad5006962d6466ef813604af4af143e4e9 Mon Sep 17 00:00:00 2001 From: lyx0 <66651385+lyx0@users.noreply.github.com> Date: Mon, 22 Aug 2022 03:37:02 +0200 Subject: [PATCH] add some more timers --- migrations/000004_create_timers_table.up.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/migrations/000004_create_timers_table.up.sql b/migrations/000004_create_timers_table.up.sql index f16db73..311abf3 100644 --- a/migrations/000004_create_timers_table.up.sql +++ b/migrations/000004_create_timers_table.up.sql @@ -5,3 +5,18 @@ CREATE TABLE IF NOT EXISTS timers ( channel text NOT NULL, repeat text NOT NULL ); + +INSERT INTO timers (name,"text",channel,repeat) VALUES + ('nourylul-2m','2m timer','nourylul','2m'), + ('nourylul-3m','3 minute timer xD','nourylul','3m'), + ('nourylul-5m','5minute timer lulw','nourylul','5m'), + ('nourylul-10m','10 minute timer xD','nourylul','10m'), + ('nourylul-15m',' every 15 minutes :)','nourylul','15m'), + ('nourybot-4m',' 4 minute timer xD','nourybot','4m'), + ('nourybot-10m','10 minute timer xd','nourybot','10m'), + ('nourybot-20m',' 20 minutes XD','nourybot','20m'), + ('uude-5m',' 5 minutes timer :)','uudelleenkytkeytynyt','5m'), + ('uude-10m',' 10 minutes timer :)','uudelleenkytkeytynyt','10m'), + ('xnoury-3m',' 3m timer','xnoury','3m'), + ('xnoury-15m',' 15 minutes timer :)','xnoury','15m'); +