Update grublox.sql

This commit is contained in:
nolanwhy 2023-05-05 23:07:54 +02:00 committed by GitHub
parent 2b867e4f9c
commit dbf485c876
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -201,7 +201,9 @@ CREATE TABLE `users` (
`money` int(11) NOT NULL DEFAULT 10,
`lastPaid` varchar(30) DEFAULT current_timestamp(),
`admin` int(1) NOT NULL DEFAULT 0,
`ip` varchar(512) NOT NULL COMMENT 'ip, but hashed..'
`ip` varchar(512) NOT NULL COMMENT 'ip, but hashed..',
`thumbnail` mediumtext NOT NULL,
`headshot` mediumtext NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--