MySQL数据库表结构设计
第 1-11 条, 共 11 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
uid | int(10) | 0 | 否 | 用户ID | 无索引 | 0 |
title | char(30) | 否 | 附件显示名 | 无索引 | ||
yesapi_zhiguo_ocenter_attachment_type | tinyint(3) | 0 | 否 | 附件类型 | 无索引 | 0 |
yesapi_zhiguo_ocenter_attachment_source | int(10) | 0 | 否 | 资源ID | 无索引 | 0 |
record_id | int(10) | 0 | 否 | 关联记录ID | 普通索引 | 0 |
download | int(10) | 0 | 否 | 下载次数 | 无索引 | 0 |
size | bigint(20) | 0 | 否 | 附件大小 | 无索引 | 0 |
dir | int(12) | 0 | 否 | 上级目录ID | 无索引 | 0 |
sort | int(8) | 0 | 否 | 排序 | 无索引 | 0 |
create_time | int(10) | 0 | 否 | 创建时间 | 无索引 | 0 |
yesapi_zhiguo_ocenter_attachment_status | tinyint(1) | 0 | 否 | 状态 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:智果内容付费-附件表:https://open.yesapi.cn/tablelist/yesapi_zhiguo_ocenter_attachment.html
-- 数据库大全:智果内容付费-附件表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_zhiguo_ocenter_attachment` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(10) NOT NULL DEFAULT '0' COMMENT '用户ID',
`title` char(30) NOT NULL COMMENT '附件显示名',
`yesapi_zhiguo_ocenter_attachment_type` tinyint(3) NOT NULL DEFAULT '0' COMMENT '附件类型',
`yesapi_zhiguo_ocenter_attachment_source` int(10) NOT NULL DEFAULT '0' COMMENT '资源ID',
`record_id` int(10) NOT NULL DEFAULT '0' COMMENT '关联记录ID',
`download` int(10) NOT NULL DEFAULT '0' COMMENT '下载次数',
`size` bigint(20) NOT NULL DEFAULT '0' COMMENT '附件大小',
`dir` int(12) NOT NULL DEFAULT '0' COMMENT '上级目录ID',
`sort` int(8) NOT NULL DEFAULT '0' COMMENT '排序',
`create_time` int(10) NOT NULL DEFAULT '0' COMMENT '创建时间',
`yesapi_zhiguo_ocenter_attachment_status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态',
KEY `record_id` (`record_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '智果内容付费-附件表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 智果内容付费-权限组与分类的对应关系表