MySQL数据库表结构设计
第 1-8 条, 共 8 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
logo | varchar(100) | 是 | 系统的logo | 无索引 | ||
title1 | varchar(100) | 是 | 系统名称 | 无索引 | ||
title2 | varchar(100) | 是 | 系统名称 | 无索引 | ||
title3 | varchar(100) | 是 | 系统名称 | 无索引 | ||
login_page_head | text | 是 | 登录页的head | 无索引 | ||
login_page_footer | text | 是 | 登录页的footer | 无索引 | ||
huodong_bottom_copyright | text | 是 | 自定义广告位内容 | 无索引 | ||
charging_desc | text | 是 | 收费说明 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:免费微信管家平台-系统logo和title设置表:https://open.yesapi.cn/tablelist/yesapi_jw_system_logo_title.html
-- 数据库大全:免费微信管家平台-系统logo和title设置表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_jw_system_logo_title` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`logo` varchar(100) NULL COMMENT '系统的logo',
`title1` varchar(100) NULL COMMENT '系统名称',
`title2` varchar(100) NULL COMMENT '系统名称',
`title3` varchar(100) NULL COMMENT '系统名称',
`login_page_head` text NULL COMMENT '登录页的head',
`login_page_footer` text NULL COMMENT '登录页的footer',
`huodong_bottom_copyright` text NULL COMMENT '自定义广告位内容',
`charging_desc` text NULL COMMENT '收费说明',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '免费微信管家平台-系统logo和title设置表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 免费微信管家平台-系统用户公众号关联表