Added SQL for the blacklist database table.

This commit is contained in:
sk89q 2010-11-19 22:06:49 -08:00
parent 07c8abff54
commit 1edc48b16f
1 changed files with 16 additions and 0 deletions

16
blacklist_table.sql Normal file
View File

@ -0,0 +1,16 @@
-- Blacklist table for MySQL.
-- You must still configure WorldGuard to use your database.
-- If you do not plan on using a database for logging blacklist events,
-- you do not need to do anything with this file.
CREATE TABLE `blacklist_events` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`event` varchar(25) NOT NULL,
`player` varchar(16) NOT NULL,
`x` int(11) NOT NULL,
`y` int(11) NOT NULL,
`z` int(11) NOT NULL,
`item` int(11) NOT NULL,
`time` int(11) NOT NULL,
PRIMARY KEY (`id`)
);