You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a bug in the software that resides in this repository, and not a
support matter (use contact.millhiorebt.com for support)
This issue is reproducible without changes to the C++ code in this repository
Steps to reproduce (include any configuration/script required to reproduce)
Create a new database. I use xampp
Import the Schema.sql on main.
Expected behaviour
Create all table without errors
Actual behaviour
Many errors in different tables.
On table players: randomizeshader tinyint NOT NULL DEFAULT '0'; (line 43)
Remove the ; and put a ,
On table player_mounts: ADD PRIMARY KEY (player_id, mount_id) (line 357)
Should not have this "ADD"
And has 2 player_mounts creation code, line 354 and 382
On table player_shaders: shader_id smallint(5) UNSIGNED NOT NULL DEFAULT 0 (line 405)
Need a , at the end
I think this is all. Thanks.
The text was updated successfully, but these errors were encountered:
Before creating an issue, please ensure:
support matter (use contact.millhiorebt.com for support)
Steps to reproduce (include any configuration/script required to reproduce)
Expected behaviour
Create all table without errors
Actual behaviour
Many errors in different tables.
On table players:
randomizeshader tinyint NOT NULL DEFAULT '0';
(line 43)Remove the ; and put a ,
On table player_mounts:
ADD PRIMARY KEY (player_id, mount_id)
(line 357)Should not have this "ADD"
And has 2 player_mounts creation code, line 354 and 382
On table player_shaders:
shader_id smallint(5) UNSIGNED NOT NULL DEFAULT 0
(line 405)Need a , at the end
I think this is all. Thanks.
The text was updated successfully, but these errors were encountered: