cakephp2-php8/app/config/sql/sessions.sql
2010-01-13 23:47:14 -05:00

16 lines
No EOL
449 B
SQL

# $Id$
#
# Copyright 2005-2010, Cake Software Foundation, Inc.
# 1785 E. Sahara Avenue, Suite 490-204
# Las Vegas, Nevada 89104
#
# Licensed under The MIT License
# Redistributions of files must retain the above copyright notice.
# http://www.opensource.org/licenses/mit-license.php The MIT License
CREATE TABLE cake_sessions (
id varchar(255) NOT NULL default '',
data text,
expires int(11) default NULL,
PRIMARY KEY (id)
);