MySQL Create Table SQL
Table Structure: okayapi_message:/tablelist/okayapi_message.html
-- MySQL Table okayapi_message
-- From: OkayAPI.com
CREATE TABLE `okayapi_message` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`message_nickname` varchar(50) NULL COMMENT '留言用户名',
`message_content` text NULL COMMENT '留言内容,支持HTML格式',
`message_post_time` datetime NULL COMMENT '留言时间,默认为当前时间',
`message_pid` int(10) NULL DEFAULT '0' COMMENT '嵌套评论时的父级评论ID,没有时为0',
`message_key` varchar(64) NULL COMMENT '评论的唯一标识,例如某篇文章',
KEY `message_nickname` (`message_nickname`),
KEY `message_content` (`message_content`),
KEY `message_post_time` (`message_post_time`),
KEY `message_pid` (`message_pid`),
KEY `message_key` (`message_key`),
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 |
---|---|---|---|---|---|---|
message_nickname | varchar(50) | 是 | 留言用户名 | 小白君 | ||
message_content | text | 否 | 留言内容,支持HTML格式 | 这里可以填写留言内容 | ||
message_post_time | datetime | 是 | 留言时间,默认为当前时间 | 2018-08-08 08:08:08 | ||
message_pid | int(10) | 0 | 是 | 嵌套评论时的父级评论ID,没有时为0 | 0 | |
message_key | varchar(64) | 是 | 评论的唯一标识,例如某篇文章 | Normal Index | article_888 |