mirror-nourybot/migrations/dev/000003_create_commands_table.up.sql

18 lines
684 B
MySQL
Raw Normal View History

2023-12-07 19:47:57 +01:00
CREATE TABLE IF NOT EXISTS commands (
id bigserial PRIMARY KEY,
name text NOT NULL,
channel text NOT NULL,
2023-12-07 19:47:57 +01:00
text text NOT NULL,
category text NOT NULL,
level integer NOT NULL,
help text NOT NULL
);
INSERT INTO commands (name,"channel","text","category","level","help") VALUES
('repeat','nouryxd','xset r rate 175 75','default',0,'Command to set my keyboard repeat rate'),
('xset','nouryxd','xset r rate 175 75','default',0,'Command to set my keyboard repeat rate'),
('kek','nouryxd','lmao','default',0,'kek'),
('lmao','nourybot','kek','default',0,'lmao'),
('dockerclean','nouryxd','docker system prune -a --volumes','default',0,'clean docker');
2023-12-07 19:47:57 +01:00