tokens_request.sql 829 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. Navicat MySQL Data Transfer
  3. Source Server : localhost
  4. Source Server Version : 50528
  5. Source Host : localhost:3306
  6. Source Database : test
  7. Target Server Type : MYSQL
  8. Target Server Version : 50528
  9. File Encoding : 65001
  10. Date: 2013-06-02 17:57:59
  11. */
  12. SET FOREIGN_KEY_CHECKS=0;
  13. -- ----------------------------
  14. -- Table structure for `tokens_request`
  15. -- ----------------------------
  16. DROP TABLE IF EXISTS `tokens_request`;
  17. CREATE TABLE `tokens_request` (
  18. `id` int(11) NOT NULL AUTO_INCREMENT,
  19. `playerid` int(11) NOT NULL,
  20. `date` date DEFAULT NULL,
  21. `hour` time DEFAULT NULL,
  22. `count` int(11) NOT NULL DEFAULT '0',
  23. PRIMARY KEY (`id`)
  24. ) ENGINE=InnoDB AUTO_INCREMENT=15330 DEFAULT CHARSET=utf8;
  25. -- ----------------------------
  26. -- Records of tokens_request
  27. -- ----------------------------