JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
API CHANGE: new DB structure for sessions
[wfpl.git] / examples / session.sql
1 drop table if exists wfpl_sessions;
2 create table wfpl_sessions (
3         id int unique auto_increment,
4         session_key varchar(16),
5         idle_timeout int,
6         expires int,
7         expires_max int,
8         value text
9 ) CHARSET=utf8;