Browse Source

Merge branch 'sprint/S1' into develop

develop
郑贵龙 1 year ago
parent
commit
b33eea6c4a
2 changed files with 1 additions and 2 deletions
  1. +0
    -2
      doc/sql/app-20230630-ddl.sql
  2. +1
    -0
      doc/sql/app-20230703-ddl.sql

+ 0
- 2
doc/sql/app-20230630-ddl.sql View File

@ -19,8 +19,6 @@ CREATE TABLE `cps_question_info`
`completion_time` VARCHAR(520) NULL DEFAULT '' COLLATE 'utf8mb4_general_ci', `completion_time` VARCHAR(520) NULL DEFAULT '' COLLATE 'utf8mb4_general_ci',
`control_area` DATETIME NULL DEFAULT NULL, `control_area` DATETIME NULL DEFAULT NULL,
`knowledge_accumulation` VARCHAR(520) NULL DEFAULT '' COLLATE 'utf8mb4_general_ci', `knowledge_accumulation` VARCHAR(520) NULL DEFAULT '' COLLATE 'utf8mb4_general_ci',
`measures_from` VARCHAR(520) NULL DEFAULT '' COLLATE 'utf8mb4_general_ci',
`accumulation_from` VARCHAR(520) NULL DEFAULT '' COLLATE 'utf8mb4_general_ci',
`status` INT(2) NULL DEFAULT '0' COMMENT '状态', `status` INT(2) NULL DEFAULT '0' COMMENT '状态',
`status1` INT(2) NULL DEFAULT '0' COMMENT '状态1', `status1` INT(2) NULL DEFAULT '0' COMMENT '状态1',
`status2` INT(2) NULL DEFAULT '0' COMMENT '状态2', `status2` INT(2) NULL DEFAULT '0' COMMENT '状态2',


+ 1
- 0
doc/sql/app-20230703-ddl.sql View File

@ -0,0 +1 @@
alter table cps_question_info Add column measures_from varchar(520) null default '' AFTER `knowledge_accumulation`, Add column accumulation_from varchar(520) null default '' AFTER `knowledge_accumulation`;

Loading…
Cancel
Save