From e7fec9ecae7757284d676f41b2fe1b32943c0f25 Mon Sep 17 00:00:00 2001
From: chenhj <1263187585@qq.com>
Date: 星期一, 22 十二月 2025 17:52:33 +0800
Subject: [PATCH] 数据表创建

---
 doc/create_table_process_route.sql |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/doc/create_table_process_route.sql b/doc/create_table_process_route.sql
new file mode 100644
index 0000000..9bc08ec
--- /dev/null
+++ b/doc/create_table_process_route.sql
@@ -0,0 +1,11 @@
+# 宸ヨ壓璺嚎
+drop table if exists process_route;
+create table process_route
+(
+    id          bigint auto_increment primary key,
+    product_id  bigint       not null default 0 comment '浜у搧id',
+    description varchar(255) not null default '' comment '鎻忚堪',
+    tenant_id   bigint       not null comment '绉熸埛id',
+    create_time datetime     null comment '褰曞叆鏃堕棿',
+    update_time datetime     null comment '鏇存柊鏃堕棿'
+);

--
Gitblit v1.9.3