From c750e034d1e0229db66202a315ca06cc77e6c844 Mon Sep 17 00:00:00 2001 From: Luan Luciano Date: Tue, 5 Dec 2023 15:49:24 -0300 Subject: [PATCH] Update schema.sql --- schema.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/schema.sql b/schema.sql index 3ba4e35effc..7a1bfccc9ff 100644 --- a/schema.sql +++ b/schema.sql @@ -315,6 +315,8 @@ CREATE TABLE IF NOT EXISTS `guild_wars` ( `status` tinyint(2) NOT NULL DEFAULT '0', `started` bigint(15) NOT NULL DEFAULT '0', `ended` bigint(15) NOT NULL DEFAULT '0', + `frags` tinyint(3) UNSIGNED NOT NULL DEFAULT '0', + `payment` bigint(20) UNSIGNED NOT NULL DEFAULT '0', INDEX `guild1` (`guild1`), INDEX `guild2` (`guild2`), CONSTRAINT `guild_wars_pk` PRIMARY KEY (`id`)