From d4380ed464ca9d862b0907b87f4f2e56b5affaba Mon Sep 17 00:00:00 2001 From: nolanwhy <69528856+nolanwhy@users.noreply.github.com> Date: Sat, 4 Feb 2023 22:12:12 +0100 Subject: [PATCH] Update grublox.sql --- grublox.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grublox.sql b/grublox.sql index 07002e2..5a7d553 100644 --- a/grublox.sql +++ b/grublox.sql @@ -30,7 +30,7 @@ SET time_zone = "+00:00"; CREATE TABLE `users` ( `id` int(11) NOT NULL, `username` varchar(20) NOT NULL, - `password` varchar(50) NOT NULL, + `password` varchar(450) 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,