fix es_extended.sql

This commit is contained in:
Jérémie N'gadi
2020-05-14 12:43:37 +02:00
parent 05498a4496
commit b8731080d4
+2 -3
View File
@@ -39,14 +39,13 @@ CREATE TABLE IF NOT EXISTS `users` (
`identifier` varchar(40) NOT NULL,
`accounts` longtext DEFAULT NULL,
`group` varchar(50) DEFAULT 'user',
`inventory` longtext DEFAULT NULL,
`inventory` longtext DEFAULT '[]',
`job` varchar(20) DEFAULT 'unemployed',
`job_grade` int(11) DEFAULT 0,
`loadout` longtext DEFAULT NULL,
`loadout` longtext DEFAULT '[]',
`position` varchar(53) DEFAULT '{"x":-269.4,"y":-955.3,"z":31.2,"heading":205.8}',
`phone_number` int(11) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`status` longtext DEFAULT NULL,
`is_dead` tinyint(1) DEFAULT 0,
PRIMARY KEY (`identifier`),
UNIQUE KEY `index_users_phone_number` (`phone_number`)