~tsep-dev/tsep/0.9-beta

« back to all changes in this revision

Viewing changes to branches/symfony/cake/console/templates/skel/config/schema/sessions.sql

  • Committer: geoffreyfishing
  • Date: 2011-01-11 23:46:12 UTC
  • Revision ID: svn-v4:ae0de26e-ed09-4cbe-9a20-e40b4c60ac6c::125
Created a symfony branch for future migration to symfony

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id$
 
2
#
 
3
# Copyright 2005-2010, 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
# MIT License (http://www.opensource.org/licenses/mit-license.php)
 
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
);
 
 
b'\\ No newline at end of file'