2009-01-14 23:40:47 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* UUID Tree behavior fixture.
|
|
|
|
*
|
2012-04-27 02:49:18 +00:00
|
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
|
2017-06-10 22:10:52 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2009-01-14 23:40:47 +00:00
|
|
|
*
|
2010-10-03 16:31:21 +00:00
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2010-10-03 16:31:21 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice
|
2009-01-14 23:40:47 +00:00
|
|
|
*
|
2017-06-10 22:10:52 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2012-04-27 02:49:18 +00:00
|
|
|
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Fixture
|
2009-01-14 23:40:47 +00:00
|
|
|
* @since CakePHP(tm) v 1.2.0.7984
|
2013-05-30 22:11:14 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
2009-01-14 23:40:47 +00:00
|
|
|
*/
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-01-14 23:40:47 +00:00
|
|
|
/**
|
|
|
|
* UuidTreeFixture class
|
|
|
|
*
|
|
|
|
* @uses CakeTestFixture
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Fixture
|
2009-01-14 23:40:47 +00:00
|
|
|
*/
|
|
|
|
class UuidTreeFixture extends CakeTestFixture {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-01-14 23:40:47 +00:00
|
|
|
/**
|
|
|
|
* fields property
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $fields = array(
|
2009-01-14 23:40:47 +00:00
|
|
|
'id' => array('type' => 'string', 'length' => 36, 'key' => 'primary'),
|
2013-06-09 15:39:48 +00:00
|
|
|
'name' => array('type' => 'string', 'null' => false),
|
2009-08-02 06:47:28 +00:00
|
|
|
'parent_id' => array('type' => 'string', 'length' => 36, 'null' => true),
|
2013-06-09 15:39:48 +00:00
|
|
|
'lft' => array('type' => 'integer', 'null' => false),
|
|
|
|
'rght' => array('type' => 'integer', 'null' => false)
|
2009-01-14 23:40:47 +00:00
|
|
|
);
|
|
|
|
}
|