mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
7 lines
213 B
SQL
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;
|