v1.0
This commit is contained in:
9
migrations/20241125045124_init.sql
Normal file
9
migrations/20241125045124_init.sql
Normal 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)
|
||||
);
|
||||
|
Reference in New Issue
Block a user