+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_box_support_helpdesk:/tablelist/okayapi_box_support_helpdesk.html


-- MySQL Table okayapi_box_support_helpdesk
-- From: OkayAPI.com
CREATE TABLE `okayapi_box_support_helpdesk` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `name` varchar(255) NULL COMMENT '',
    `email` varchar(255) NULL COMMENT '',
    `close_after` smallint(6) NULL DEFAULT '24' COMMENT '',
    `can_reopen` tinyint(1) NULL DEFAULT '0' COMMENT '',
    `signature` text NULL COMMENT '',
    KEY `name` (`name`),
    KEY `email` (`email`),
    KEY `close_after` (`close_after`),
    KEY `can_reopen` (`can_reopen`),
    KEY `signature` (`signature`),
    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 NameField TypeDefaultIS NULLField CommentIndexDemo Data
namevarchar(255)
emailvarchar(255)
close_aftersmallint(6)2424
can_reopentinyint(1)00
signaturetext

Guess You Like

MySQL Table Design okayapi_activity_admin_history

MySQL Table Design okayapi_activity_client_email

MySQL Table Design okayapi_activity_client_history

MySQL Table Design okayapi_activity_system

MySQL Table Design okayapi_box_admin

MySQL Table Design okayapi_box_admin_group

MySQL Table Design okayapi_box_cart

MySQL Table Design okayapi_box_cart_product

MySQL Table Design okayapi_box_client

MySQL Table Design okayapi_box_client_balance

MySQL Table Design okayapi_box_client_group

MySQL Table Design okayapi_box_client_order

MySQL Table Design okayapi_box_client_order_meta

MySQL Table Design okayapi_box_client_order_status

MySQL Table Design okayapi_box_client_password_reset

MySQL Table Design okayapi_box_currency

MySQL Table Design okayapi_box_email_template

MySQL Table Design okayapi_box_extension

MySQL Table Design okayapi_box_extension_meta

MySQL Table Design okayapi_box_form

TOP ↑