1
0

tokens_call.sql 818 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:51
  11. */
  12. SET FOREIGN_KEY_CHECKS=0;
  13. -- ----------------------------
  14. -- Table structure for `tokens_call`
  15. -- ----------------------------
  16. DROP TABLE IF EXISTS `tokens_call`;
  17. CREATE TABLE `tokens_call` (
  18. `id` int(11) NOT NULL AUTO_INCREMENT,
  19. `playerid` int(11) NOT NULL,
  20. `date` date DEFAULT NULL,
  21. `hour` int(2) DEFAULT NULL,
  22. `count` int(11) NOT NULL DEFAULT '0',
  23. PRIMARY KEY (`id`)
  24. ) ENGINE=InnoDB AUTO_INCREMENT=1202 DEFAULT CHARSET=utf8;
  25. -- ----------------------------
  26. -- Records of tokens_call
  27. -- ----------------------------