10 lines
628 B
SQL
10 lines
628 B
SQL
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 '基地开放项目表'; |