mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
8 lines
259 B
MySQL
8 lines
259 B
MySQL
|
|
DROP TABLE IF EXISTS `GuildvsGuild`;
|
||
|
|
CREATE TABLE `GuildvsGuild` (
|
||
|
|
`id` int(10) unsigned NOT NULL,
|
||
|
|
`win` int(10) unsigned NOT NULL DEFAULT '0',
|
||
|
|
`total` bigint(20) unsigned NOT NULL DEFAULT '0',
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|