All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sql.mysql.sql Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
CREATE TABLE `fs_session`
(
    `id`          varchar(64) NOT NULL,
    `session`     longblob,
    `update_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
    `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
    PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy