mirror-nourybot/migrations/prod/000004_create_timers_table.up.sql

13 lines
355 B
MySQL
Raw Permalink Normal View History

2023-09-08 03:55:00 +02:00
CREATE TABLE IF NOT EXISTS timers (
id bigserial PRIMARY KEY,
name text NOT NULL,
2023-10-04 00:05:38 +02:00
identifier text NOT NULL,
2023-09-08 03:55:00 +02:00
text text NOT NULL,
channel text NOT NULL,
repeat text NOT NULL
);
2023-10-04 00:05:38 +02:00
INSERT INTO timers (name,identifier,"text",channel,repeat) VALUES
2024-07-17 22:40:56 +02:00
('nouryxd-60m','678efbe2-fa2f-4849-8dbc-9ec32e6ffd3b','gopherDance','nouryxd','60m');
2023-09-08 03:55:00 +02:00