Files
hldrCenter/server/sql/devproject/devproject.sql
2025-11-01 23:36:31 +08:00

10 lines
628 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 '基地开放项目表';