resolve sql nullable key

This commit is contained in:
2025-08-23 14:36:41 -04:00
parent fa81bd6f79
commit 716ca94e73

View File

@@ -17,7 +17,7 @@ CREATE TABLE mp_player_instance_data (
guid INT UNSIGNED NOT NULL DEFAULT '0',
difficulty INT UNSIGNED NOT NULL DEFAULT '3',
mapId INT UNSIGNED NOT NULL,
instanceId INT UNSIGNED,
instanceId INT UNSIGNED NOT NULL DEFAULT '0',
deaths INT UNSIGNED NOT NULL,
PRIMARY KEY (guid, mapId, instanceId)