MySQL Create Table SQL
Table Structure: okayapi_box_forum_topic_message:/tablelist/okayapi_box_forum_topic_message.html
-- MySQL Table okayapi_box_forum_topic_message
-- From: OkayAPI.com
CREATE TABLE `okayapi_box_forum_topic_message` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`forum_topic_id` bigint(20) NULL COMMENT '',
`client_id` bigint(20) NULL COMMENT '',
`admin_id` bigint(20) NULL COMMENT '',
`message` text NULL COMMENT '',
`ip` varchar(45) NULL COMMENT '',
`points` varchar(255) NULL COMMENT '',
KEY `forum_topic_id` (`forum_topic_id`),
KEY `client_id` (`client_id`),
KEY `admin_id` (`admin_id`),
KEY `message` (`message`),
KEY `ip` (`ip`),
KEY `points` (`points`),
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-6 of 6 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
forum_topic_id | bigint(20) | 是 | Normal Index | |||
client_id | bigint(20) | 是 | Normal Index | |||
admin_id | bigint(20) | 是 | Normal Index | |||
message | text | 是 | ||||
ip | varchar(45) | 是 | ||||
points | varchar(255) | 是 |