From 2a2dc1cad28fdad98db1eb93ed38d5ae9bdaf3a7 Mon Sep 17 00:00:00 2001 From: qianqiuwanzi Date: Thu, 17 Sep 2026 16:06:00 +0800 Subject: [PATCH] =?UTF-8?q?v1.0.51:=20=E4=BF=AE=E5=A4=8D=E5=9F=BA=E5=87=86?= =?UTF-8?q?schema=E7=BC=BA=E5=A4=B1=E5=88=97=20person=5Fwork=5Fexperiences?= =?UTF-8?q?.is=5Factive=20-=20=E8=AF=A5=E5=88=97=E5=9C=A88=E5=A4=84?= =?UTF-8?q?=E4=B8=9A=E5=8A=A1=E4=BB=A3=E7=A0=81(pwe.is=5Factive)=E8=A2=AB?= =?UTF-8?q?=E5=BC=95=E7=94=A8,=E5=8F=8D=E6=8E=A8schema=E9=81=97=E6=BC=8F?= =?UTF-8?q?=E5=AF=BC=E8=87=B4dashboard/company/employees/person=E7=AD=89?= =?UTF-8?q?=E7=BB=9F=E8=AE=A1=E4=B8=8E=E5=88=97=E8=A1=A8500;=E5=B7=B2?= =?UTF-8?q?=E8=A1=A5=E5=88=97=E5=B9=B6=E5=90=8C=E6=AD=A5=E9=83=A8=E7=BD=B2?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Code --- sql/schema_v1.0.51_base.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/sql/schema_v1.0.51_base.sql b/sql/schema_v1.0.51_base.sql index 6edb86e..3b085f6 100644 --- a/sql/schema_v1.0.51_base.sql +++ b/sql/schema_v1.0.51_base.sql @@ -243,6 +243,7 @@ CREATE TABLE IF NOT EXISTS `person_work_experiences` ( `start_date` DATE DEFAULT NULL COMMENT '开始时间', `end_date` DATE DEFAULT NULL COMMENT '结束时间', `is_current` TINYINT(1) NOT NULL DEFAULT 0 COMMENT '是否现任 1/0', + `is_active` TINYINT(1) NOT NULL DEFAULT 1 COMMENT '启用 1/0', `created_at` DATE DEFAULT NULL COMMENT '创建日期', PRIMARY KEY (`id`), KEY `idx_person` (`person_id`),