adding example apps, fixing powerup issues
[feisty_meow.git] / production / example_apps / shared_calendar / config / schema / sessions.sql
1 # Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
2 #
3 # Licensed under The MIT License
4 # For full copyright and license information, please see the LICENSE.txt
5 # Redistributions of files must retain the above copyright notice.
6 # MIT License (http://www.opensource.org/licenses/mit-license.php)
7
8 CREATE TABLE sessions (
9   id char(40) NOT NULL,
10   data text,
11   expires INT(11) NOT NULL,
12   PRIMARY KEY  (id)
13 );