mirror-nourybot/migrations/000003_create_commands_table.up.sql
2022-08-11 01:17:33 +02:00

6 lines
154 B
SQL

CREATE TABLE IF NOT EXISTS commands (
id bigserial PRIMARY KEY,
name text UNIQUE NOT NULL,
text text NOT NULL,
permission integer NOT NULL
);