MySQL Create Table SQL
Table Structure: okayapi_box_support_ticket_note:/tablelist/okayapi_box_support_ticket_note.html
-- MySQL Table okayapi_box_support_ticket_note
-- From: OkayAPI.com
CREATE TABLE `okayapi_box_support_ticket_note` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`support_ticket_id` bigint(20) NULL COMMENT '',
`admin_id` bigint(20) NULL COMMENT '',
`note` text NULL COMMENT '',
KEY `support_ticket_id` (`support_ticket_id`),
KEY `admin_id` (`admin_id`),
KEY `note` (`note`),
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-3 of 3 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
support_ticket_id | bigint(20) | 是 | Normal Index | |||
admin_id | bigint(20) | 是 | Normal Index | |||
note | text | 是 |