MySQL Create Table SQL
Table Structure: okayapi_kite_document_model:/tablelist/okayapi_kite_document_model.html
-- MySQL Table okayapi_kite_document_model
-- From: OkayAPI.com
CREATE TABLE `okayapi_kite_document_model` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`site_id` int(11) NULL COMMENT '模型归属站点',
`name` varchar(64) NULL COMMENT '模型名称',
`sort` int(11) NULL DEFAULT '0' COMMENT '排序 越小越靠前',
`create_at` int(11) NULL COMMENT '创建时间',
`update_at` int(11) NULL COMMENT '更新时间',
KEY `site_id` (`site_id`),
KEY `name` (`name`),
KEY `sort` (`sort`),
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-5 of 5 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
site_id | int(11) | 否 | 模型归属站点 | |||
name | varchar(64) | 否 | 模型名称 | |||
sort | int(11) | 0 | 否 | 排序 越小越靠前 | 0 | |
create_at | int(11) | 是 | 创建时间 | |||
update_at | int(11) | 是 | 更新时间 |