+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_kite_message:/tablelist/okayapi_kite_message.html


-- MySQL Table okayapi_kite_message
-- From: OkayAPI.com
CREATE TABLE `okayapi_kite_message` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `site_id` int(11) NULL COMMENT '网站ID',
    `type` tinyint(1) NULL COMMENT '信息类型 1 系统消息 2 短信 3 邮件',
    `subject` varchar(255) NULL COMMENT '信息标题',
    `body` text NULL COMMENT '信息内容',
    `code` varchar(32) NULL COMMENT '动态码',
    `mid` int(11) NULL COMMENT '系统消息接收人mid',
    `email` varchar(255) NULL COMMENT '邮件消息接收人email',
    `phone` char(11) NULL COMMENT '短信接收人手机号码',
    `send_status` varchar(255) NULL COMMENT ' success 发送成功  fail 发送失败',
    `send_error` 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 `type` (`type`),
    KEY `subject` (`subject`),
    KEY `body` (`body`),
    KEY `code` (`code`),
    KEY `mid` (`mid`),
    KEY `email` (`email`),
    KEY `phone` (`phone`),
    KEY `send_status` (`send_status`),
    KEY `send_error` (`send_error`),
    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-13 of 13 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
site_idint(11)网站ID
typetinyint(1)信息类型 1 系统消息 2 短信 3 邮件
subjectvarchar(255)信息标题
bodytext信息内容
codevarchar(32)动态码
midint(11)系统消息接收人mid
emailvarchar(255)邮件消息接收人email
phonechar(11)短信接收人手机号码
send_statusvarchar(255) success 发送成功 fail 发送失败
send_errorvarchar(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_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_navigation

TOP ↑