summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--db/laconica_pg.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/db/laconica_pg.sql b/db/laconica_pg.sql
index 24581bad0..ad34720a2 100644
--- a/db/laconica_pg.sql
+++ b/db/laconica_pg.sql
@@ -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 */