完成总体的sql数据库创建
This commit is contained in:
@@ -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 '基地开放项目表';
|
||||
Reference in New Issue
Block a user