icbc_queue_simple.sql 759 B

12345678910111213141516171819202122
  1. -- 工行积分推送队列表(简化版)
  2. -- 如果icbc_queue.sql执行有问题,请使用此文件
  3. DROP TABLE IF EXISTS `fa_icbc_queue`;
  4. CREATE TABLE `fa_icbc_queue` (
  5. `id` int(11) NOT NULL AUTO_INCREMENT,
  6. `mobile_phone` varchar(20) NOT NULL DEFAULT '',
  7. `integral_value` int(11) NOT NULL DEFAULT '0',
  8. `integral_type` varchar(50) NOT NULL DEFAULT '',
  9. `nickname` varchar(100) NOT NULL DEFAULT '',
  10. `status` tinyint(1) NOT NULL DEFAULT '0',
  11. `retry_count` int(11) NOT NULL DEFAULT '0',
  12. `result` text,
  13. `error_msg` varchar(500) DEFAULT '',
  14. `createtime` int(11) DEFAULT NULL,
  15. `updatetime` int(11) DEFAULT NULL,
  16. PRIMARY KEY (`id`),
  17. KEY `status` (`status`),
  18. KEY `createtime` (`createtime`)
  19. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;