MySQL数据库表结构设计
第 1-23 条, 共 23 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
alipay_openid | char(60) | 否 | 支付宝openid | 普通索引 | ||
weixin_openid | char(60) | 否 | 微信openid | 普通索引 | ||
weixin_web_openid | char(60) | 否 | 微信web用户openid | 无索引 | ||
baidu_openid | char(60) | 否 | 百度openid | 普通索引 | ||
yesapi_shopxo_s_user_status | tinyint(1) | 0 | 否 | 状态(0正常, 1禁止发言, 2禁止登录) | 无索引 | 0 |
salt | char(32) | 否 | 配合密码加密串 | 无索引 | ||
pwd | char(32) | 否 | 登录密码 | 无索引 | ||
token | char(60) | 否 | token | 普通索引 | ||
username | char(60) | 否 | 用户名 | 普通索引 | ||
nickname | char(60) | 否 | 用户昵称 | 无索引 | ||
mobile | char(11) | 否 | 手机号码 | 普通索引 | ||
char(60) | 否 | 电子邮箱(最大长度60个字符) | 无索引 | |||
gender | tinyint(1) | 0 | 否 | 性别(0保密,1女,2男) | 无索引 | 0 |
avatar | char(255) | 否 | 用户头像地址 | 无索引 | ||
province | char(60) | 否 | 所在省 | 无索引 | ||
city | char(60) | 否 | 所在市 | 无索引 | ||
birthday | int(11) | 0 | 否 | 生日 | 无索引 | 0 |
address | char(150) | 否 | 详细地址 | 无索引 | ||
integral | int(10) | 0 | 否 | 积分 | 无索引 | 0 |
locking_integral | int(10) | 0 | 否 | 锁定积分 | 无索引 | 0 |
referrer | int(11) | 0 | 否 | 推荐人用户id | 无索引 | 0 |
is_delete_time | int(11) | 0 | 否 | 是否已删除(0否, 大于0删除时间) | 无索引 | 0 |
upd_time | int(11) | 0 | 否 | 更新时间 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:ShopXO商城-用户:https://open.yesapi.cn/tablelist/yesapi_shopxo_s_user.html
-- 数据库大全:ShopXO商城-用户
-- 来源:YesApi.cn
CREATE TABLE `yesapi_shopxo_s_user` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`alipay_openid` char(60) NOT NULL COMMENT '支付宝openid',
`weixin_openid` char(60) NOT NULL COMMENT '微信openid',
`weixin_web_openid` char(60) NOT NULL COMMENT '微信web用户openid',
`baidu_openid` char(60) NOT NULL COMMENT '百度openid',
`yesapi_shopxo_s_user_status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态(0正常, 1禁止发言, 2禁止登录)',
`salt` char(32) NOT NULL COMMENT '配合密码加密串',
`pwd` char(32) NOT NULL COMMENT '登录密码',
`token` char(60) NOT NULL COMMENT 'token',
`username` char(60) NOT NULL COMMENT '用户名',
`nickname` char(60) NOT NULL COMMENT '用户昵称',
`mobile` char(11) NOT NULL COMMENT '手机号码',
`email` char(60) NOT NULL COMMENT '电子邮箱(最大长度60个字符)',
`gender` tinyint(1) NOT NULL DEFAULT '0' COMMENT '性别(0保密,1女,2男)',
`avatar` char(255) NOT NULL COMMENT '用户头像地址',
`province` char(60) NOT NULL COMMENT '所在省',
`city` char(60) NOT NULL COMMENT '所在市',
`birthday` int(11) NOT NULL DEFAULT '0' COMMENT '生日',
`address` char(150) NOT NULL COMMENT '详细地址',
`integral` int(10) NOT NULL DEFAULT '0' COMMENT '积分',
`locking_integral` int(10) NOT NULL DEFAULT '0' COMMENT '锁定积分',
`referrer` int(11) NOT NULL DEFAULT '0' COMMENT '推荐人用户id',
`is_delete_time` int(11) NOT NULL DEFAULT '0' COMMENT '是否已删除(0否, 大于0删除时间)',
`upd_time` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间',
KEY `alipay_openid` (`alipay_openid`),
KEY `weixin_openid` (`weixin_openid`),
KEY `baidu_openid` (`baidu_openid`),
KEY `token` (`token`),
KEY `username` (`username`),
KEY `mobile` (`mobile`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'ShopXO商城-用户';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 ShopXO商城-手机 - 用户中心导航