2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* This is Sessions Schema file
|
|
|
|
*
|
|
|
|
* Use it to configure database for Sessions
|
|
|
|
*
|
2017-06-10 21:33:55 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
|
2015-09-25 15:25:35 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2017-06-10 21:33:55 +00:00
|
|
|
* @link https://cakephp.org CakePHP(tm) Project
|
2011-10-14 19:06:36 +00:00
|
|
|
* @package app.Config.Schema
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 0.2.9
|
2015-09-25 15:25:35 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2014-05-28 03:19:44 +00:00
|
|
|
/**
|
2008-05-30 11:40:08 +00:00
|
|
|
* Using the Schema command line utility
|
|
|
|
* cake schema run create Sessions
|
|
|
|
*/
|
|
|
|
class SessionsSchema extends CakeSchema {
|
|
|
|
|
2014-05-28 03:19:44 +00:00
|
|
|
/**
|
|
|
|
* Name property
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $name = 'Sessions';
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2014-05-28 03:19:44 +00:00
|
|
|
/**
|
2015-09-25 15:25:35 +00:00
|
|
|
* Before callback.
|
2014-05-28 03:19:44 +00:00
|
|
|
*
|
2015-09-25 15:25:35 +00:00
|
|
|
* @param array $event Schema object properties
|
|
|
|
* @return bool Should process continue
|
2014-05-28 03:19:44 +00:00
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function before($event = array()) {
|
2008-05-30 11:40:08 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-05-28 03:19:44 +00:00
|
|
|
/**
|
2015-09-25 15:25:35 +00:00
|
|
|
* After callback.
|
2014-05-28 03:19:44 +00:00
|
|
|
*
|
2015-09-25 15:25:35 +00:00
|
|
|
* @param array $event Schema object properties
|
2014-05-28 03:19:44 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function after($event = array()) {
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
|
2014-05-28 03:19:44 +00:00
|
|
|
/**
|
2015-09-25 15:25:35 +00:00
|
|
|
* The cake_sessions table definition
|
2014-05-28 03:19:44 +00:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $cake_sessions = array(
|
2012-03-03 23:55:07 +00:00
|
|
|
'id' => array('type' => 'string', 'null' => false, 'key' => 'primary'),
|
|
|
|
'data' => array('type' => 'text', 'null' => true, 'default' => null),
|
|
|
|
'expires' => array('type' => 'integer', 'null' => true, 'default' => null),
|
|
|
|
'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1))
|
|
|
|
);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
}
|