+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_fl_feedback:/tablelist/okayapi_fl_feedback.html


-- MySQL Table okayapi_fl_feedback
-- From: OkayAPI.com
CREATE TABLE `okayapi_fl_feedback` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `type` varchar(20) NOT NULL COMMENT '意见反馈类型,选填',
    `title` varchar(150) NOT NULL COMMENT '标题,选填',
    `content` mediumtext NOT NULL COMMENT '意见反馈内容',
    `mobile` varchar(20) NOT NULL COMMENT '手机号码,选填',
    `user_id` int(11) NOT NULL DEFAULT '0' COMMENT '用户id',
    KEY `type` (`type`),
    KEY `title` (`title`),
    KEY `content` (`content`),
    KEY `mobile` (`mobile`),
    KEY `user_id` (`user_id`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CMS建站系统-意见反馈表';

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
typevarchar(20)意见反馈类型,选填
titlevarchar(150)标题,选填
contentmediumtext意见反馈内容
mobilevarchar(20)手机号码,选填
user_idint(11)0用户id0

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_feedback

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

TOP ↑