]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Splitting br3nda's merge 97db6e17b3f76e9a6acf87ddbad47ba54e9b1a3b
authorEric Helgeson <erichelgeson@gmail.com>
Wed, 29 Jul 2009 01:17:20 +0000 (20:17 -0500)
committerEric Helgeson <erichelgeson@gmail.com>
Wed, 29 Jul 2009 01:17:20 +0000 (20:17 -0500)
Add session table to pg.sql

db/laconica_pg.sql

index 24581bad0c9733df98ac6369d77b1ecb997e95de..ad34720a23357e405c99a7ff433303385d4df041 100644 (file)
@@ -519,6 +519,16 @@ create table group_alias (
 );
 create index group_alias_group_id_idx on group_alias (group_id);
 
+create table session (
+
+    id varchar(32) primary key /* comment 'session ID'*/,
+    session_data text /* comment 'session data'*/,
+    created timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date this record was created'*/,
+    modified integer DEFAULT extract(epoch from CURRENT_TIMESTAMP) /* comment 'date this record was modified'*/ 
+);
+
+create index session_modified_idx on session (modified);
+
 
 /* Textsearch stuff */