MySQL Create Table SQL
Table Structure: okayapi_test_record:/tablelist/okayapi_test_record.html
-- MySQL Table okayapi_test_record
-- From: OkayAPI.com
CREATE TABLE `okayapi_test_record` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`userId` bigint(15) NULL COMMENT '用户id',
`documentId` bigint(15) NULL COMMENT '测试用例文档id',
`response` text NULL COMMENT '接口返回结果JSON',
`date` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建日期',
`compare` text NULL COMMENT '对比结果',
`standard` text NULL COMMENT 'response 的校验标准,是一个 JSON 格式的 AST ,描述了正确 Response 的结构、里面的字段名称、类型、长度、取值范围 等属性。',
KEY `userId` (`userId`),
KEY `documentId` (`documentId`),
KEY `response` (`response`),
KEY `date` (`date`),
KEY `compare` (`compare`),
KEY `standard` (`standard`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'web开发-测试记录';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-6 of 6 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
userId | bigint(15) | 否 | 用户id | |||
documentId | bigint(15) | 否 | 测试用例文档id | |||
response | text | 否 | 接口返回结果JSON | |||
date | timestamp | CURRENT_TIMESTAMP | 否 | 创建日期 | CURRENT_TIMESTAMP | |
compare | text | 是 | 对比结果 | |||
standard | text | 是 | response 的校验标准,是一个 JSON 格式的 AST ,描述了正确 Response 的结构、里面的字段名称、类型、长度、取值范围 等属性。 |