mirror of
https://github.com/Ratstail91/SANCTUM.git
synced 2025-11-29 02:24:27 +11:00
36 lines
830 B
SQL
36 lines
830 B
SQL
CREATE DATABASE IF NOT EXISTS sanctum;
|
|
|
|
USE sanctum;
|
|
|
|
CREATE TABLE IF NOT EXISTS log (
|
|
id int NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
discordID bigint,
|
|
time TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP,
|
|
type varchar(32),
|
|
data varchar(255)
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS users (
|
|
id int NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
userID bigint NOT NULL,
|
|
timeJoined TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
faction bigint,
|
|
factionChanged DATETIME NULL,
|
|
|
|
level int NOT NULL DEFAULT 0,
|
|
experience int NOT NULL DEFAULT 0,
|
|
|
|
maxHealth int NOT NULL DEFAULT 100,
|
|
health int NOT NULL DEFAULT 100,
|
|
maxStamina int NOT NULL DEFAULT 5,
|
|
stamina int NOT NULL DEFAULT 5,
|
|
|
|
strength int NOT NULL DEFAULT 5,
|
|
speed int NOT NULL DEFAULT 5,
|
|
|
|
upgradePoints int NOT NULL DEFAULT 0,
|
|
|
|
wallet int NOT NULL DEFAULT 0,
|
|
lastCheckin DATETIME NULL
|
|
); |