MySQL Create Table SQL
Table Structure: okayapi_eduwind_YiiSession:/tablelist/okayapi_eduwind_YiiSession.html
-- MySQL Table okayapi_eduwind_YiiSession
-- From: OkayAPI.com
CREATE TABLE `okayapi_eduwind_YiiSession` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`okayapi_eduwind_YiiSession_expire` int(11) NOT NULL COMMENT '',
`okayapi_eduwind_YiiSession_data` longblob NOT NULL COMMENT '',
`userId` int(11) NOT NULL COMMENT '用户id',
KEY `okayapi_eduwind_YiiSession_expire` (`okayapi_eduwind_YiiSession_expire`),
KEY `okayapi_eduwind_YiiSession_data` (`okayapi_eduwind_YiiSession_data`),
KEY `userId` (`userId`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'EW在线教育-会话';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-3 of 3 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
okayapi_eduwind_YiiSession_expire | int(11) | 是 | ||||
okayapi_eduwind_YiiSession_data | longblob | 是 | ||||
userId | int(11) | 否 | 用户id |