MySQL数据库表结构设计
第 1-17 条, 共 17 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
siteid | smallint(6) | 0 | 否 | 无索引 | 0 | |
postdate | int(11) | 0 | 否 | 无索引 | 0 | |
fromid | int(11) | 0 | 否 | 普通索引 | 0 | |
fromname | varchar(30) | 否 | 无索引 | |||
toid | int(11) | 0 | 否 | 普通索引 | 0 | |
toname | varchar(30) | 否 | 无索引 | |||
title | varchar(100) | 否 | 无索引 | |||
content | mediumtext | 否 | 无索引 | |||
messagetype | tinyint(1) | 0 | 否 | 无索引 | 0 | |
isread | tinyint(1) | 0 | 否 | 无索引 | 0 | |
fromdel | tinyint(1) | 0 | 否 | 无索引 | 0 | |
todel | tinyint(1) | 0 | 否 | 无索引 | 0 | |
enablebbcode | tinyint(1) | 1 | 否 | 无索引 | 1 | |
enablehtml | tinyint(1) | 0 | 否 | 无索引 | 0 | |
enablesmilies | tinyint(1) | 1 | 否 | 无索引 | 1 | |
attachsig | tinyint(1) | 1 | 否 | 无索引 | 1 | |
attachment | tinyint(1) | 0 | 否 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:jieqi小说-私信:https://open.yesapi.cn/tablelist/yesapi_jieqi_system_message.html
-- 数据库大全:jieqi小说-私信
-- 来源:YesApi.cn
CREATE TABLE `yesapi_jieqi_system_message` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`siteid` smallint(6) NOT NULL DEFAULT '0' COMMENT '',
`postdate` int(11) NOT NULL DEFAULT '0' COMMENT '',
`fromid` int(11) NOT NULL DEFAULT '0' COMMENT '',
`fromname` varchar(30) NOT NULL COMMENT '',
`toid` int(11) NOT NULL DEFAULT '0' COMMENT '',
`toname` varchar(30) NOT NULL COMMENT '',
`title` varchar(100) NOT NULL COMMENT '',
`content` mediumtext NOT NULL COMMENT '',
`messagetype` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`isread` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`fromdel` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`todel` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`enablebbcode` tinyint(1) NOT NULL DEFAULT '1' COMMENT '',
`enablehtml` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`enablesmilies` tinyint(1) NOT NULL DEFAULT '1' COMMENT '',
`attachsig` tinyint(1) NOT NULL DEFAULT '1' COMMENT '',
`attachment` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
KEY `fromid` (`fromid`),
KEY `toid` (`toid`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'jieqi小说-私信';
复制后,到数据库执行,即可创建此数据库表。