ported and refactored SetupController from Generic
[qcms.git] / config / sql / sessions.sql
blob5d124d493d57ff178d1e600ee2224827b233695b
1 # $Id: sessions.sql 6314 2008-01-02 21:33:51Z phpnut $
3 # Copyright 2005-2008,  Cake Software Foundation, Inc.
4 #                                                               1785 E. Sahara Avenue, Suite 490-204
5 #                                                               Las Vegas, Nevada 89104
7 # Licensed under The MIT License
8 # Redistributions of files must retain the above copyright notice.
9 # http://www.opensource.org/licenses/mit-license.php The MIT License
11 CREATE TABLE cake_sessions (
12   id varchar(255) NOT NULL default '',
13   data text,
14   expires int(11) default NULL,
15   PRIMARY KEY  (id)