123456789101112131415161718192021222324252627282930313233343536 |
- /*
- Navicat Premium Data Transfer
- Source Server : 101.43.185.169
- Source Server Type : MySQL
- Source Server Version : 80024 (8.0.24)
- Source Host : localhost:3306
- Source Schema : panda_admin_v1
- Target Server Type : MySQL
- Target Server Version : 80024 (8.0.24)
- File Encoding : 65001
- Date: 11/01/2024 21:17:03
- */
- SET NAMES utf8mb4;
- SET FOREIGN_KEY_CHECKS = 0;
- -- ----------------------------
- -- Table structure for failed_jobs
- -- ----------------------------
- DROP TABLE IF EXISTS `failed_jobs`;
- CREATE TABLE `failed_jobs` (
- `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
- `uuid` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
- `connection` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
- `queue` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
- `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
- `exception` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
- `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
- PRIMARY KEY (`id`) USING BTREE,
- UNIQUE INDEX `failed_jobs_uuid_unique`(`uuid` ASC) USING BTREE
- ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '【队列】任务列表' ROW_FORMAT = Dynamic;
- SET FOREIGN_KEY_CHECKS = 1;
|