修正sql

This commit is contained in:
wkj 2025-04-19 11:05:59 +08:00
parent f6e3d14502
commit 89e3a5ef98
1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ CREATE TABLE `abstractShipAccount` (
) ENGINE = InnoDB AUTO_INCREMENT = 10000 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci;
-- deposit
ALTER TABLE `deposit` ADD `shipId` bigint(0) DEFAULT NULL;
ALTER TABLE `deposit` ADD `shipId` char(36) DEFAULT NULL;
-- offlineAccount
ALTER TABLE `offlineAccount` ADD `needReceiving` tinyint(1) DEFAULT NULL;
@ -205,7 +205,7 @@ CREATE TABLE `wechatMpShip` (
INDEX `wechatMpShip_trigger_uuid`(`$$triggerUuid$$`, `$$deleteAt$$`) USING BTREE,
INDEX `wechatMpShip_fk_systemId_auto_create`(`systemId`, `$$deleteAt$$`) USING BTREE,
INDEX `wechatMpShip_fk_applicationId_auto_create`(`applicationId`, `$$deleteAt$$`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 10000 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
) ENGINE = InnoDB AUTO_INCREMENT = 10000 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci;
-- wpAccount
ALTER TABLE `wpAccount` ADD