MySQL数据库表结构设计
第 1-9 条, 共 9 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
content_id | int(11) | 否 | 无索引 | |||
from_uid | int(11) | 否 | 无索引 | |||
to_uid | int(11) | 否 | 无索引 | |||
create_time | int(11) | 否 | 无索引 | |||
is_read | tinyint(4) | 否 | 无索引 | |||
last_toast | int(11) | 否 | 无索引 | |||
yesapi_zhiguo_ocenter_message_status | tinyint(4) | 否 | 无索引 | |||
yesapi_zhiguo_ocenter_message_type | varchar(25) | 否 | 消息类型 | 无索引 | ||
tpl | varchar(100) | 否 | 消息模板 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:智果内容付费-消息表:https://open.yesapi.cn/tablelist/yesapi_zhiguo_ocenter_message.html
-- 数据库大全:智果内容付费-消息表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_zhiguo_ocenter_message` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`content_id` int(11) NOT NULL COMMENT '',
`from_uid` int(11) NOT NULL COMMENT '',
`to_uid` int(11) NOT NULL COMMENT '',
`create_time` int(11) NOT NULL COMMENT '',
`is_read` tinyint(4) NOT NULL COMMENT '',
`last_toast` int(11) NOT NULL COMMENT '',
`yesapi_zhiguo_ocenter_message_status` tinyint(4) NOT NULL COMMENT '',
`yesapi_zhiguo_ocenter_message_type` varchar(25) NOT NULL COMMENT '消息类型',
`tpl` varchar(100) NOT NULL COMMENT '消息模板',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '智果内容付费-消息表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 智果内容付费-权限组与分类的对应关系表