eluna-scripts-ornfelt/lua/Config_Rates/Xp_Custom.sql
2024-09-23 07:59:23 +02:00

7 lines
213 B
SQL

USE acore_world;
DROP TABLE IF EXISTS `custom_xp`;
CREATE TABLE IF NOT EXISTS `custom_xp` (
`CharID` int unsigned NOT NULL,
`Rate` float unsigned NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;