1
0

ban.sql 887 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. Navicat Premium Data Transfer
  3. Source Server : NGG
  4. Source Server Type : MySQL
  5. Source Server Version : 50625
  6. Source Host : samp.ng-gaming.net
  7. Source Database : samp_beta
  8. Target Server Type : MySQL
  9. Target Server Version : 50625
  10. File Encoding : utf-8
  11. Date: 08/10/2015 13:36:49 PM
  12. */
  13. SET NAMES utf8;
  14. SET FOREIGN_KEY_CHECKS = 0;
  15. -- ----------------------------
  16. -- Table structure for `ban`
  17. -- ----------------------------
  18. DROP TABLE IF EXISTS `ban`;
  19. CREATE TABLE `ban` (
  20. `id` int(11) NOT NULL AUTO_INCREMENT,
  21. `bannedid` int(11) NOT NULL,
  22. `creatorid` int(11) NOT NULL,
  23. `IP` varchar(17) NOT NULL,
  24. `reason` varchar(128) NOT NULL,
  25. `createdate` int(11) NOT NULL,
  26. `liftdate` int(11) NOT NULL,
  27. `active` int(2) NOT NULL,
  28. PRIMARY KEY (`id`)
  29. ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
  30. SET FOREIGN_KEY_CHECKS = 1;