修改sql结构

This commit is contained in:
2025-11-01 23:36:31 +08:00
parent 32b235f08d
commit c2db98cd76
18 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
create table devproject
(
id int not null auto_increment comment '基地开放项目ID', -- 建议加auto_increment主键自增
basic_dev_project_management_system text null comment '基础开发项目管理制度',
basic_dev_project_initiation_result text null comment '基础开发项目立项结果',
basic_dev_project_midterm_inspection text null comment '基础开发项目中期检查',
basic_dev_project_achievements text null comment '基础开发项目成果',
primary key (id) -- 独立显式声明主键
)
comment '基地开放项目表';