MySQL Create Table SQL
Table Structure: okayapi_box_support_ticket_message:/tablelist/okayapi_box_support_ticket_message.html
-- MySQL Table okayapi_box_support_ticket_message
-- From: OkayAPI.com
CREATE TABLE `okayapi_box_support_ticket_message` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`support_ticket_id` bigint(20) NULL COMMENT '',
`client_id` bigint(20) NULL COMMENT '',
`admin_id` bigint(20) NULL COMMENT '',
`content` text NULL COMMENT '',
`attachment` varchar(255) NULL COMMENT '',
`ip` varchar(45) NULL COMMENT '',
KEY `support_ticket_id` (`support_ticket_id`),
KEY `client_id` (`client_id`),
KEY `admin_id` (`admin_id`),
KEY `content` (`content`),
KEY `attachment` (`attachment`),
KEY `ip` (`ip`),
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 |
---|---|---|---|---|---|---|
support_ticket_id | bigint(20) | 是 | Normal Index | |||
client_id | bigint(20) | 是 | Normal Index | |||
admin_id | bigint(20) | 是 | Normal Index | |||
content | text | 是 | Normal Index | |||
attachment | varchar(255) | 是 | ||||
ip | varchar(45) | 是 |