v1.0.3
CI / build-deploy (pull_request) Failing after 2m52s
CI / notify-on-failure (pull_request) Successful in 0s

This commit is contained in:
Timi
2026-08-01 01:13:08 +08:00
parent ce22661a9b
commit 15bf9bd688
31 changed files with 131 additions and 145 deletions
@@ -0,0 +1,5 @@
ALTER TABLE `gao_customer`
ADD COLUMN `active_name` VARCHAR(64) GENERATED ALWAYS AS (
CASE WHEN `deleted_at` IS NULL THEN NULLIF(TRIM(`name`), '') ELSE NULL END
) STORED COMMENT '未删除客户姓名' INVISIBLE,
ADD UNIQUE KEY `uk_gao_customer_active_name` (`active_name`);