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

13 lines
316 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 NOT NULL,
channel text NOT NULL,
text text NOT NULL,
2023-03-04 01:03:56 +01:00
level integer NOT NULL,
description text NOT NULL
2022-08-11 01:17:33 +02:00
);
2022-08-16 00:55:00 +02:00
INSERT INTO commands (name,"channel","text","level","description") VALUES
2024-07-17 22:40:56 +02:00
('kek','nouryxd','lmao',0,'kek');