Files
game_server/target/classes/schema.sql
2025-08-24 15:33:03 +08:00

9 lines
249 B
SQL

-- Initial database schema for game_platform
CREATE TABLE IF NOT EXISTS users (
id BIGINT PRIMARY KEY AUTO_INCREMENT,
username VARCHAR(50) NOT NULL,
email VARCHAR(120) NULL,
created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
);