MySQL Create Table SQL
Table Structure: okayapi_kite_document_content_extra:/tablelist/okayapi_kite_document_content_extra.html
-- MySQL Table okayapi_kite_document_content_extra
-- From: OkayAPI.com
CREATE TABLE `okayapi_kite_document_content_extra` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`document_id` int(11) NULL COMMENT '文档ID',
`type` char(20) NULL COMMENT '字段内容类型',
`name` varchar(64) NULL COMMENT '字段名称',
`variable` varchar(64) NULL COMMENT '字段变量',
`key` varchar(255) NULL COMMENT '字段选项原始值',
`value` text NULL COMMENT '字段值',
`create_at` int(11) NULL COMMENT '创建时间',
`update_at` int(11) NULL COMMENT '更新时间',
KEY `document_id` (`document_id`),
KEY `type` (`type`),
KEY `name` (`name`),
KEY `variable` (`variable`),
KEY `key` (`key`),
KEY `value` (`value`),
KEY `create_at` (`create_at`),
KEY `update_at` (`update_at`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '建站系统-档案评论额外内容表';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-8 of 8 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
document_id | int(11) | 否 | 文档ID | Normal Index | ||
type | char(20) | 否 | 字段内容类型 | |||
name | varchar(64) | 否 | 字段名称 | |||
variable | varchar(64) | 否 | 字段变量 | Normal Index | ||
key | varchar(255) | 是 | 字段选项原始值 | Normal Index | ||
value | text | 是 | 字段值 | |||
create_at | int(11) | 是 | 创建时间 | |||
update_at | int(11) | 是 | 更新时间 |