Files
azerothcore-wotlk-pbot/sql/structure/CHARACTERS_CHANNELS_BANS.sql
Yehonal e8e94a0a66 First Commit
For Azeroth!
2016-06-26 10:39:44 +02:00

7 lines
232 B
SQL

CREATE TABLE `channels_bans` (
`channelId` int(10) unsigned NOT NULL,
`playerGUID` int(10) unsigned NOT NULL,
`banTime` int(10) unsigned NOT NULL,
PRIMARY KEY (`channelId`,`playerGUID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;