MySQL数据库表结构设计
第 1-3 条, 共 3 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
yesapi_eduwind_YiiSession_expire | int(11) | 是 | 无索引 | |||
yesapi_eduwind_YiiSession_data | longblob | 是 | 无索引 | |||
userId | int(11) | 否 | 用户id | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:EW在线教育-会话:https://open.yesapi.cn/tablelist/yesapi_eduwind_YiiSession.html
-- 数据库大全:EW在线教育-会话
-- 来源:YesApi.cn
CREATE TABLE `yesapi_eduwind_YiiSession` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`yesapi_eduwind_YiiSession_expire` int(11) NOT NULL COMMENT '',
`yesapi_eduwind_YiiSession_data` longblob NOT NULL COMMENT '',
`userId` int(11) NOT NULL COMMENT '用户id',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'EW在线教育-会话';
复制后,到数据库执行,即可创建此数据库表。