mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-10-10 09:28:06 +00:00
make it compile
This commit is contained in:
@@ -3,7 +3,7 @@ CREATE TABLE IF NOT EXISTS guilds (
|
||||
name VARCHAR(35) NOT NULL,
|
||||
owner_id BIGINT NOT NULL REFERENCES charinfo(id) ON DELETE CASCADE,
|
||||
motd TEXT,
|
||||
uscore INT NOT NULL DEFAULT 0,
|
||||
reputation INT NOT NULL DEFAULT 0,
|
||||
created BIGINT UNSIGNED NOT NULL DEFAULT 0
|
||||
);
|
||||
|
||||
@@ -12,4 +12,5 @@ CREATE TABLE IF NOT EXISTS guild_members (
|
||||
character_id BIGINT NOT NULL REFERENCES charinfo(id) ON DELETE CASCADE,
|
||||
rank INT NOT NULL DEFAULT 4,
|
||||
joined BIGINT UNSIGNED NOT NULL DEFAULT 0
|
||||
PRIMARY KEY (guild_id, character_id)
|
||||
);
|
Reference in New Issue
Block a user