uid815 feac41cb74 This commit was generated by cvs2svn to compensate for changes in r198340,
which included commits to RCS files with non-trunk default branches.

git-svn-id: svn://10.0.0.236/trunk@198341 18797224-902f-48f8-a5cc-f745e15eee43
2006-05-24 19:14:24 +00:00

11 lines
366 B
SQL

-- @copyright Copyright (c) 2006, Cake Software Foundation, Inc.
-- @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
-- @since CakePHP v 0.10.8.1997
-- @version $Revision: 1.1.1.1 $
CREATE TABLE cake_sessions (
id varchar(255) NOT NULL default '',
data text,
expires int(11) default NULL,
PRIMARY KEY (id)
);