cakephp2-php8/lib/Cake/Console/Templates/skel/Config/Schema/sessions.php

58 lines
1.1 KiB
PHP
Raw Normal View History

<?php
/**
* This is Sessions Schema file
*
* Use it to configure database for Sessions
*
2009-11-06 06:00:11 +00:00
* @link http://cakephp.org CakePHP(tm) Project
* @package app.Config.Schema
* @since CakePHP(tm) v 0.2.9
*/
2014-05-28 03:19:44 +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
*/
public $name = 'Sessions';
2014-05-28 03:19:44 +00:00
/**
* Before event.
*
* @param array $event The event data.
* @return bool Success
*/
public function before($event = array()) {
return true;
}
2014-05-28 03:19:44 +00:00
/**
* After event.
*
* @param array $event The event data.
* @return void
*/
public function after($event = array()) {
}
2014-05-28 03:19:44 +00:00
/**
* cake_sessions table definition
*
* @var array
*/
public $cake_sessions = array(
'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))
);
}