· 8 years ago · Dec 18, 2017, 07:34 PM
1gamemodes/darkrp/gamemode/libraries/mysqlite/mysqlite.lua:265: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'INDEX,
2
3 is_public BOOLEAN,
4
5 created_at TIMESTAMP NOT NUL' at line 9 ( CREATE TABLE IF NOT EXISTS glorifiedmap_poi (
6 id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
7 title VARCHAR( 48 ) NOT NULL,
8
9 x INT UNSIGNED NOT NULL,
10 y INT UNSIGNED NOT NULL,
11 z INT UNSIGNED NOT NULL,
12
13 player_id INT NOT NULL INDEX,
14
15 is_public BOOLEAN,
16
17 created_at TIMESTAMP NOT NULL DEFAULT NOW(),
18 updated_at TIMESTAMP NOT NULL DEFAULT NOW() ON UPDATE NOW()
19 )
20 )
21gamemodes/darkrp/gamemode/libraries/mysqlite/mysqlite.lua:265: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'VARCHAR( 64 ) NOT NULL PRIMARY KEY,
22 value VARCHAR( 64 ) NOT NULL,
23
24 ' at line 2 ( CREATE TABLE IF NOT EXISTS configurer_config (
25 key VARCHAR( 64 ) NOT NULL PRIMARY KEY,
26 value VARCHAR( 64 ) NOT NULL,
27
28 server_id VARCHAR( 64 ),
29 map_id VARCHAR( 64 )
30 )
31 )
32gamemodes/darkrp/gamemode/libraries/mysqlite/mysqlite.lua:265: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'key, value
33 FROM configurer_config' at line 1 (SELECT key, value
34 FROM configurer_config)