Splitting br3nda's merge 97db6e17b3f76e9a6acf87ddbad47ba54e9b1a3b

Add session table to pg.sql
This commit is contained in:
Eric Helgeson 2009-07-28 20:17:20 -05:00
parent c85b6155eb
commit 72117294d7
1 changed files with 10 additions and 0 deletions

View 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 */