summaryrefslogtreecommitdiff
path: root/db/074to080.sql
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-11-09 15:01:07 -0500
committerEvan Prodromou <evan@status.net>2010-11-09 15:01:07 -0500
commit41a0f18301fba1c1861f99abd79741d4ddb41a4e (patch)
treea5c96948517298cf15193541f9d017058629fb4c /db/074to080.sql
parente87323e426f032504a01a01ea0854065413fb177 (diff)
parenta988e2e97b4b790f3cbd9f755ebf61bf321e16f9 (diff)
Merge branch '0.9.x' into emailsummary
Diffstat (limited to 'db/074to080.sql')
-rw-r--r--db/074to080.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/074to080.sql b/db/074to080.sql
index ff0819159..e3631e214 100644
--- a/db/074to080.sql
+++ b/db/074to080.sql
@@ -107,3 +107,15 @@ 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;
+