mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
7 lines
292 B
SQL
7 lines
292 B
SQL
-- DROP TABLE IF EXISTS `character_magic_find`;
|
|
|
|
CREATE TABLE `character_magic_find` (
|
|
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'player guid',
|
|
`mf` int(10) unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Magic Find System';
|