mirror of
https://github.com/araxiaonline/mod-azerothshard.git
synced 2026-06-13 09:42:25 -04:00
10 lines
285 B
SQL
10 lines
285 B
SQL
CREATE TABLE IF NOT EXISTS `pvp_accounts` (
|
|
`id` int(11) DEFAULT NULL,
|
|
`isPvP` int(11) DEFAULT '1'
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
CREATE TABLE IF NOT EXISTS `pvp_characters` (
|
|
`id` int(11) DEFAULT NULL,
|
|
`isPvP` int(11) DEFAULT '1'
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|