MySQL Create Table SQL
Table Structure: okayapi_kite_block:/tablelist/okayapi_kite_block.html
-- MySQL Table okayapi_kite_block
-- From: OkayAPI.com
CREATE TABLE `okayapi_kite_block` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`cid` int(11) NULL DEFAULT '0' COMMENT '友情链接分类ID',
`site_id` char(64) NULL COMMENT '网站编号',
`name` varchar(64) NULL COMMENT '网站名称',
`variable` varchar(64) NULL COMMENT '区块变量标识',
`content` text NULL COMMENT '内容',
`start_time` int(11) NULL COMMENT '',
`end_time` int(11) NULL COMMENT '',
`status` tinyint(1) NULL DEFAULT '0' COMMENT '状态: 0隐藏 1 显示',
`create_at` int(11) NULL COMMENT '创建时间',
`update_at` int(11) NULL COMMENT '更新时间',
KEY `cid` (`cid`),
KEY `site_id` (`site_id`),
KEY `name` (`name`),
KEY `variable` (`variable`),
KEY `content` (`content`),
KEY `start_time` (`start_time`),
KEY `end_time` (`end_time`),
KEY `status` (`status`),
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 | |
site_id | char(64) | 否 | 网站编号 | |||
name | varchar(64) | 否 | 网站名称 | |||
variable | varchar(64) | 否 | 区块变量标识 | |||
content | text | 是 | 内容 | |||
start_time | int(11) | 是 | ||||
end_time | int(11) | 是 | ||||
status | tinyint(1) | 0 | 否 | 状态: 0隐藏 1 显示 | 0 | |
create_at | int(11) | 是 | 创建时间 | |||
update_at | int(11) | 是 | 更新时间 |