統計
| ブランチ: | リビジョン:

pictcode / app / Config / Schema / sessions.sql @ 635eef61

履歴 | 表示 | アノテート | ダウンロード (541 Bytes)

1
# $Id$
2
#
3
# Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
4
#                                                                1785 E. Sahara Avenue, Suite 490-204
5
#                                                                Las Vegas, Nevada 89104
6
#
7
# Licensed under The MIT License
8
# For full copyright and license information, please see the LICENSE.txt
9
# Redistributions of files must retain the above copyright notice.
10
# MIT License (http://www.opensource.org/licenses/mit-license.php)
11

    
12
CREATE TABLE cake_sessions (
13
  id varchar(255) NOT NULL default '',
14
  data text,
15
  expires int(11) default NULL,
16
  PRIMARY KEY  (id)
17
);