You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
528 B
12 lines
528 B
|
7 years ago
|
CREATE TABLE `tank20_session`
|
||
|
|
(
|
||
|
|
`uuid` char(36) NOT NULL,
|
||
|
|
`user_uuid` char(36) DEFAULT NULL COMMENT '用户uuid',
|
||
|
|
`ip` varchar(45) DEFAULT NULL COMMENT '用户的ip地址',
|
||
|
|
`expire_time` timestamp NULL DEFAULT NULL,
|
||
|
|
`sort` bigint(20) DEFAULT NULL,
|
||
|
|
`update_time` timestamp NULL DEFAULT NULL,
|
||
|
|
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||
|
|
PRIMARY KEY (`uuid`),
|
||
|
|
UNIQUE KEY `id_UNIQUE` (`uuid`)
|
||
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='session表';
|