liyong
2026-01-20 ca0565e53494417b3779759f8d3898e07bfd5929
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_model_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 '鏇存柊鏃堕棿'
);