MySQL数据库表结构设计
第 1-9 条, 共 9 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
sender_uid | int(11) | 否 | 无索引 | |||
sender_name | varchar(64) | 否 | 无索引 | |||
direction | smallint(4) | 否 | 无索引 | |||
receiver_uid | int(11) | 否 | 无索引 | |||
title | varchar(128) | 否 | 无索引 | |||
content | varchar(5000) | 否 | 无索引 | |||
readed | tinyint(1) | 否 | 无索引 | |||
yesapi_user_message_type | tinyint(2) | 否 | 无索引 | |||
create_time | int(11) | 否 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:敏捷项目-用户消息:https://open.yesapi.cn/tablelist/yesapi_user_message.html
-- 数据库大全:敏捷项目-用户消息
-- 来源:YesApi.cn
CREATE TABLE `yesapi_user_message` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`sender_uid` int(11) NOT NULL COMMENT '',
`sender_name` varchar(64) NOT NULL COMMENT '',
`direction` smallint(4) NOT NULL COMMENT '',
`receiver_uid` int(11) NOT NULL COMMENT '',
`title` varchar(128) NOT NULL COMMENT '',
`content` varchar(5000) NOT NULL COMMENT '',
`readed` tinyint(1) NOT NULL COMMENT '',
`yesapi_user_message_type` tinyint(2) NOT NULL COMMENT '',
`create_time` int(11) NOT NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '敏捷项目-用户消息';
复制后,到数据库执行,即可创建此数据库表。