MySQL Create Table SQL
Table Structure: okayapi_kite_navigation:/tablelist/okayapi_kite_navigation.html
-- MySQL Table okayapi_kite_navigation
-- From: OkayAPI.com
CREATE TABLE `okayapi_kite_navigation` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`cid` int(11) NULL DEFAULT '0' COMMENT '导航分类ID',
`cat_id` int(11) NULL COMMENT '文章栏目分类ID',
`pid` int(11) NULL DEFAULT '0' COMMENT '',
`site_id` char(64) NULL COMMENT '网站编号',
`name` varchar(255) NULL COMMENT '菜单名称',
`url` varchar(255) NULL COMMENT '菜单URL',
`type` tinyint(1) NULL DEFAULT '1' COMMENT '1 栏目 2自定义URL',
`sort` int(11) NULL DEFAULT '0' COMMENT '排序',
`create_at` int(11) NULL COMMENT '创建时间',
`update_at` int(11) NULL COMMENT '更新时间',
KEY `cid` (`cid`),
KEY `cat_id` (`cat_id`),
KEY `pid` (`pid`),
KEY `site_id` (`site_id`),
KEY `name` (`name`),
KEY `url` (`url`),
KEY `type` (`type`),
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-10 of 10 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
cid | int(11) | 0 | 否 | 导航分类ID | 0 | |
cat_id | int(11) | 否 | 文章栏目分类ID | |||
pid | int(11) | 0 | 否 | 0 | ||
site_id | char(64) | 否 | 网站编号 | |||
name | varchar(255) | 是 | 菜单名称 | |||
url | varchar(255) | 是 | 菜单URL | |||
type | tinyint(1) | 1 | 否 | 1 栏目 2自定义URL | 1 | |
sort | int(11) | 0 | 否 | 排序 | 0 | |
create_at | int(11) | 是 | 创建时间 | |||
update_at | int(11) | 是 | 更新时间 |