This commit is contained in:
2024-11-25 00:29:09 -06:00
parent 6e1e91936f
commit 008ff5b7cf
20 changed files with 1617 additions and 31 deletions

View File

@ -0,0 +1,9 @@
-- Create basic users table for fun stuff around the bot
CREATE TABLE users (
id SERIAL PRIMARY KEY,
discord_id VARCHAR(255) NOT NULL UNIQUE,
actions_allowed TINYINT DEFAULT 1,
about TEXT,
pronouns VARCHAR(255)
);