MySQL Create Table SQL
Table Structure: okayapi_box_support_p_ticket_message:/tablelist/okayapi_box_support_p_ticket_message.html
-- MySQL Table okayapi_box_support_p_ticket_message
-- From: OkayAPI.com
CREATE TABLE `okayapi_box_support_p_ticket_message` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`support_p_ticket_id` bigint(20) NULL COMMENT '',
`admin_id` bigint(20) NULL COMMENT 'Filled when message author is admin',
`content` text NULL COMMENT '',
`ip` varchar(45) NULL COMMENT '',
KEY `support_p_ticket_id` (`support_p_ticket_id`),
KEY `admin_id` (`admin_id`),
KEY `content` (`content`),
KEY `ip` (`ip`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '主机销售-售后工单留言p';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-4 of 4 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
support_p_ticket_id | bigint(20) | 是 | Normal Index | |||
admin_id | bigint(20) | 是 | Filled when message author is admin | Normal Index | ||
content | text | 是 | Normal Index | |||
ip | varchar(45) | 是 |