From 2966bf66ac4460e5ddc573adea84da8f8d147041 Mon Sep 17 00:00:00 2001 From: nolanwhy Date: Sat, 4 Feb 2023 22:22:55 +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 5a7d553..8380b1a 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(450) NOT NULL, + `password` varchar(500) 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,