fix sql bug
This commit is contained in:
parent
baeae67cfa
commit
c01018f5e8
|
@ -239,7 +239,7 @@ CREATE TABLE IF NOT EXISTS `test_plan` (
|
||||||
`executor_match_rule` varchar(255) DEFAULT NULL COMMENT 'Executor match rule)',
|
`executor_match_rule` varchar(255) DEFAULT NULL COMMENT 'Executor match rule)',
|
||||||
`tags` text COMMENT 'Test plan tags (JSON format)',
|
`tags` text COMMENT 'Test plan tags (JSON format)',
|
||||||
`create_time` bigint(13) NOT NULL COMMENT 'Create timestamp',
|
`create_time` bigint(13) NOT NULL COMMENT 'Create timestamp',
|
||||||
`update_time` bigint(13) NOT NULL COMMENT 'Update timestamp'
|
`update_time` bigint(13) NOT NULL COMMENT 'Update timestamp',
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
)
|
)
|
||||||
ENGINE = InnoDB
|
ENGINE = InnoDB
|
||||||
|
@ -275,8 +275,8 @@ CREATE TABLE IF NOT EXISTS `test_case` (
|
||||||
`remark` text DEFAULT NULL COMMENT 'Test case remark',
|
`remark` text DEFAULT NULL COMMENT 'Test case remark',
|
||||||
`steps` text DEFAULT NULL COMMENT 'Test case steps (JSON format)',
|
`steps` text DEFAULT NULL COMMENT 'Test case steps (JSON format)',
|
||||||
`create_time` bigint(13) NOT NULL COMMENT 'Create timestamp',
|
`create_time` bigint(13) NOT NULL COMMENT 'Create timestamp',
|
||||||
`update_time` bigint(13) NOT NULL COMMENT 'Update timestamp'
|
`update_time` bigint(13) NOT NULL COMMENT 'Update timestamp',
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`)
|
||||||
)
|
)
|
||||||
ENGINE = InnoDB
|
ENGINE = InnoDB
|
||||||
DEFAULT CHARSET = utf8mb4
|
DEFAULT CHARSET = utf8mb4
|
||||||
|
|
Loading…
Reference in New Issue