mirror of
https://github.com/araxiaonline/mod-azerothshard.git
synced 2026-06-13 01:32:21 -04:00
6 lines
268 B
SQL
6 lines
268 B
SQL
DROP TABLE IF EXISTS `character_xp_rate`;
|
|
CREATE TABLE IF NOT EXISTS `character_xp_rate` (
|
|
`guid` int(10) UNSIGNED NOT NULL,
|
|
`xp_rate` float UNSIGNED NOT NULL DEFAULT '1',
|
|
PRIMARY KEY (`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player XP Rate System'; |