1234567891011121314151617181920212223242526 |
- -- 工行积分推送队列表(无前缀版本)
- -- 如果报错找不到表,使用此文件
- SET SESSION sql_mode = '';
- -- 删除可能存在的旧表
- DROP TABLE IF EXISTS `icbc_queue`;
- -- 创建表(不带前缀)
- CREATE TABLE `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 COMMENT='工行积分推送队列';
|