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

11 lines
286 B
MySQL
Raw Normal View History

2022-08-11 01:17:33 +02:00
CREATE TABLE IF NOT EXISTS commands (
id bigserial PRIMARY KEY,
name text UNIQUE NOT NULL,
text text NOT NULL,
permission integer NOT NULL
);
INSERT INTO commands (name,"text","permission") VALUES
('repeat','xset r rate 175 50',0),
('eurkey','setxkbmap -layout eu',0);