himbot/migrations/000001_create_users_table.up.sql

7 lines
195 B
MySQL
Raw Normal View History

2024-11-04 01:23:57 -06:00
CREATE TABLE IF NOT EXISTS users (
id INTEGER PRIMARY KEY AUTOINCREMENT,
discord_id TEXT NOT NULL UNIQUE,
username TEXT NOT NULL,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
);