MySQL Create Table SQL
Table Structure: okayapi_kite_hooks:/tablelist/okayapi_kite_hooks.html
-- MySQL Table okayapi_kite_hooks
-- From: OkayAPI.com
CREATE TABLE `okayapi_kite_hooks` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(40) NULL COMMENT '钩子名称',
`description` text NULL COMMENT '描述',
`type` tinyint(1) NULL DEFAULT '1' COMMENT '类型',
`addons` varchar(255) NULL COMMENT '钩子挂载的插件 ','分割',
`status` tinyint(1) NULL DEFAULT '1' COMMENT '',
`create_at` int(11) NULL COMMENT '创建时间',
`update_at` int(11) NULL COMMENT '更新时间',
KEY `name` (`name`),
KEY `description` (`description`),
KEY `type` (`type`),
KEY `addons` (`addons`),
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-7 of 7 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
name | varchar(40) | 否 | 钩子名称 | |||
description | text | 是 | 描述 | |||
type | tinyint(1) | 1 | 否 | 类型 | 1 | |
addons | varchar(255) | 否 | 钩子挂载的插件 ','分割 | |||
status | tinyint(1) | 1 | 否 | 1 | ||
create_at | int(11) | 是 | 创建时间 | |||
update_at | int(11) | 是 | 更新时间 |