Update quest_xp_table.sql

This commit is contained in:
Grimfeather
2025-09-13 08:39:56 +02:00
committed by GitHub
parent 91a9dbd678
commit 7bef12b7e5

View File

@@ -1,8 +1,8 @@
DROP TABLE IF EXISTS `custom_quest_xp`;
CREATE TABLE IF NOT EXISTS `custom_quest_xp` (
`entry` int(9) unsigned NOT NULL,
`xpValue` int(9) unsigned NOT NULL,
PRIMARY KEY (`entry`)
`entry` int unsigned NOT NULL,
`xpValue` int unsigned NOT NULL,
PRIMARY KEY (`entry`)
) ENGINE=InnoDB;