36834-vm/db/migrations/001_create_users_table.sql
2025-12-11 09:01:24 +00:00

10 lines
266 B
SQL

CREATE TABLE IF NOT EXISTS users (
id INT AUTO_INCREMENT PRIMARY KEY,
username TEXT UNIQUE,
email TEXT UNIQUE,
password_hash TEXT,
profile_public BOOLEAN DEFAULT true,
kyc_status TEXT, -- pending/approved/rejected
created_at TIMESTAMP DEFAULT now()
);