1234567891011121314 |
- CREATE TABLE IF NOT EXISTS `__PREFIX__jobs` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `queue` varchar(255) NOT NULL,
- `payload` longtext NOT NULL,
- `attempts` tinyint(3) unsigned NOT NULL,
- `reserved` tinyint(3) unsigned NOT NULL,
- `reserved_at` int(10) unsigned DEFAULT NULL,
- `available_at` int(10) unsigned DEFAULT NULL,
- `created_at` int(10) unsigned DEFAULT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT='消息队列';
-
- -- 1.1.0 --
- ALTER TABLE `__PREFIX__jobs` ENGINE = InnoDB;
|