+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_kite_feedback:/tablelist/okayapi_kite_feedback.html


-- MySQL Table okayapi_kite_feedback
-- From: OkayAPI.com
CREATE TABLE `okayapi_kite_feedback` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `site_id` int(11) NULL COMMENT '网站ID',
    `uid` int(11) NULL COMMENT '评论人mid ',
    `title` varchar(255) NULL COMMENT '反馈标题',
    `username` varchar(64) NULL COMMENT '反馈者姓名',
    `email` varchar(255) NULL COMMENT '反馈者邮箱',
    `phone` varchar(64) NULL COMMENT '反馈者电话',
    `content` text NULL COMMENT '反馈内容',
    `reply` varchar(255) NULL COMMENT '',
    `status` tinyint(1) NULL DEFAULT '0' COMMENT '0 隐藏 1 显示',
    `create_at` int(11) NULL COMMENT '创建时间',
    `update_at` int(11) NULL COMMENT '更新时间',
    KEY `site_id` (`site_id`),
    KEY `uid` (`uid`),
    KEY `title` (`title`),
    KEY `username` (`username`),
    KEY `email` (`email`),
    KEY `phone` (`phone`),
    KEY `content` (`content`),
    KEY `reply` (`reply`),
    KEY `status` (`status`),
    KEY `create_at` (`create_at`),
    KEY `update_at` (`update_at`),
    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-11 of 11 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
site_idint(11)网站ID
uidint(11)评论人mid
titlevarchar(255)反馈标题
usernamevarchar(64)反馈者姓名
emailvarchar(255)反馈者邮箱
phonevarchar(64)反馈者电话
contenttext反馈内容
replyvarchar(255)
statustinyint(1)00 隐藏 1 显示0
create_atint(11)创建时间
update_atint(11)更新时间

Guess You Like

MySQL Table Design okayapi_kite_addons

MySQL Table Design okayapi_kite_auth_role

MySQL Table Design okayapi_kite_auth_rule

MySQL Table Design okayapi_kite_auth_user

MySQL Table Design okayapi_kite_block

MySQL Table Design okayapi_kite_document_category

MySQL Table Design okayapi_kite_document_comments

MySQL Table Design okayapi_kite_document_comments_like

MySQL Table Design okayapi_kite_document_content

MySQL Table Design okayapi_kite_document_content_extra

MySQL Table Design okayapi_kite_document_content_like

MySQL Table Design okayapi_kite_document_field

MySQL Table Design okayapi_kite_document_model

MySQL Table Design okayapi_kite_document_model_field

MySQL Table Design okayapi_kite_hooks

MySQL Table Design okayapi_kite_language

MySQL Table Design okayapi_kite_link

MySQL Table Design okayapi_kite_log

MySQL Table Design okayapi_kite_message

MySQL Table Design okayapi_kite_navigation

TOP ↑