Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. -- Blacklist table for MySQL.
  2. -- You must still configure WorldGuard to use your database.
  3. -- If you do not plan on using a database for logging blacklist events,
  4. -- you do not need to do anything with this file.
  5.  
  6. CREATE TABLE `blacklist_events` (
  7. `id` int(11) NOT NULL AUTO_INCREMENT,
  8. `event` varchar(25) NOT NULL,
  9. `player` varchar(16) NOT NULL,
  10. `x` int(11) NOT NULL,
  11. `y` int(11) NOT NULL,
  12. `z` int(11) NOT NULL,
  13. `item` int(11) NOT NULL,
  14. `time` int(11) NOT NULL,
  15. `comment` varchar(255) NULL,
  16. PRIMARY KEY (`id`)
  17. );
  18.  
  19. -- Required update if you have an older version of the table:
  20.  
  21. ALTER TABLE `blacklist_events` ADD `comment` VARCHAR( 255 ) NULL
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement