X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=db%2Flaconica.sql;h=2c04f680a85d587a032cd06fada5c63c8488eaa5;hb=fdaba2e94bf4948c14408c14865e8fc03e33cc43;hp=3f8918de62d3b8bb9d5ebbadb79834162f8f6638;hpb=83407cc3caa2de0f5fd1b60d67357e415096b6ae;p=quix0rs-gnu-social.git diff --git a/db/laconica.sql b/db/laconica.sql index 3f8918de62..2c04f680a8 100644 --- a/db/laconica.sql +++ b/db/laconica.sql @@ -524,3 +524,14 @@ create table group_alias ( index group_alias_group_id_idx (group_id) ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; + +create table session ( + + id varchar(32) primary key comment 'session ID', + session_data text comment 'session data', + created datetime not null comment 'date this record was created', + modified timestamp comment 'date this record was modified', + + index session_modified_idx (modified) + +) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; \ No newline at end of file