Subversion-Projekte lars-tiefland.cakephp

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
# $Id: sessions.sql 7118 2008-06-04 20:49:29Z gwoo $
2
#
3
# Copyright 2005-2008,	Cake Software Foundation, Inc.
4
#								1785 E. Sahara Avenue, Suite 490-204
5
#								Las Vegas, Nevada 89104
6
#
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
10
 
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)
16
);