完成总体的sql数据库创建

This commit is contained in:
2025-10-27 11:01:49 +08:00
parent e087a78387
commit 85d2e75e35
15 changed files with 341 additions and 94 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 '基地开放项目表';