mirror-nourybot/migrations/prod/000003_create_commands_table.up.sql
2024-07-17 22:40:56 +02:00

13 lines
316 B
SQL

CREATE TABLE IF NOT EXISTS commands (
id bigserial PRIMARY KEY,
name text NOT NULL,
channel text NOT NULL,
text text NOT NULL,
level integer NOT NULL,
description text NOT NULL
);
INSERT INTO commands (name,"channel","text","level","description") VALUES
('kek','nouryxd','lmao',0,'kek');