From 89b57723bb7c97f0a05986de99a92aebb05a1f14 Mon Sep 17 00:00:00 2001 From: ui0ppk <113091876+ui0ppk@users.noreply.github.com> Date: Tue, 24 Jan 2023 21:46:32 +0200 Subject: [PATCH] terrible but good ;) mario u will see --- grublox.sql | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/grublox.sql b/grublox.sql index e6ad7d5..07002e2 100644 --- a/grublox.sql +++ b/grublox.sql @@ -3,7 +3,7 @@ -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 --- Generation Time: Jan 24, 2023 at 06:18 PM +-- Generation Time: Jan 24, 2023 at 08:45 PM -- Server version: 10.4.24-MariaDB -- PHP Version: 7.4.29 @@ -33,7 +33,8 @@ CREATE TABLE `users` ( `password` varchar(50) NOT NULL, `date` datetime NOT NULL DEFAULT current_timestamp(), `token` varchar(25) DEFAULT NULL COMMENT 'Token for joining. Useful to secure joining to prevent unauthorized users to use other names.', - `description` varchar(250) DEFAULT NULL + `description` varchar(250) DEFAULT NULL, + `money` int(11) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; --