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