+ Use This Table All Design

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 NameField TypeDefaultIS NULLField CommentIndexDemo Data
userIdbigint(15)用户id
documentIdbigint(15)测试用例文档id
responsetext接口返回结果JSON
datetimestampCURRENT_TIMESTAMP创建日期CURRENT_TIMESTAMP
comparetext对比结果
standardtextresponse 的校验标准,是一个 JSON 格式的 AST ,描述了正确 Response 的结构、里面的字段名称、类型、长度、取值范围 等属性。

Guess You Like

MySQL Table Design okayapi_seo_article

MySQL Table Design okayapi_article_ad

MySQL Table Design okayapi_article_cate

MySQL Table Design okayapi_article_tag

MySQL Table Design okayapi_article_map

MySQL Table Design okayapi_access

MySQL Table Design okayapi_comment

MySQL Table Design okayapi_document

MySQL Table Design okayapi_function

MySQL Table Design okayapi_login

MySQL Table Design okayapi_moment

MySQL Table Design okayapi_praise

MySQL Table Design okayapi_request

MySQL Table Design okayapi_response

MySQL Table Design okayapi_verify

MySQL Table Design okayapi_apijson_privacy

MySQL Table Design okayapi_apijson_user

TOP ↑