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; --