|
|
|
|
1331
|
drop table if exists `cmc_project`;
|
1331
|
drop table if exists `cmc_project`;
|
1332
|
create table `cmc_project` (
|
1332
|
create table `cmc_project` (
|
1333
|
`project_id` char(19) not null comment '项目id',
|
1333
|
`project_id` char(19) not null comment '项目id',
|
1334
|
- `project_name` varchar(255) default null comment '项目名称',
|
|
|
1335
|
`project_number` varchar(10) default null comment '项目编号',
|
1334
|
`project_number` varchar(10) default null comment '项目编号',
|
|
|
1335
|
+ `project_name` varchar(255) default null comment '项目名称',
|
1336
|
primary key (`project_id`) using btree
|
1336
|
primary key (`project_id`) using btree
|
1337
|
) engine = innodb comment = 'cmc项目表';;
|
1337
|
) engine = innodb comment = 'cmc项目表';;
|
1338
|
|
1338
|
|