mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-16 03:48:24 +00:00
50 lines
1.8 KiB
PHP
50 lines
1.8 KiB
PHP
|
<?php
|
||
|
/* SVN FILE: $Id: aros_aco_fixture.php 4668 2007-03-23 22:11:06Z phpnut $ */
|
||
|
/**
|
||
|
* Short description for file.
|
||
|
*
|
||
|
* Long description for file
|
||
|
*
|
||
|
* PHP versions 4 and 5
|
||
|
*
|
||
|
* CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
|
||
|
* Copyright 2005-2007, Cake Software Foundation, Inc.
|
||
|
* 1785 E. Sahara Avenue, Suite 490-204
|
||
|
* Las Vegas, Nevada 89104
|
||
|
*
|
||
|
* Licensed under The Open Group Test Suite License
|
||
|
* Redistributions of files must retain the above copyright notice.
|
||
|
*
|
||
|
* @filesource
|
||
|
* @copyright Copyright 2005-2007, Cake Software Foundation, Inc.
|
||
|
* @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
|
||
|
* @package cake.tests
|
||
|
* @subpackage cake.tests.fixtures
|
||
|
* @since CakePHP(tm) v 1.2.0.4667
|
||
|
* @version $Revision: 4668 $
|
||
|
* @modifiedby $LastChangedBy: phpnut $
|
||
|
* @lastmodified $Date: 2007-03-23 19:11:06 -0300 (Vie, 23 Mar 2007) $
|
||
|
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
||
|
*/
|
||
|
/**
|
||
|
* Short description for class.
|
||
|
*
|
||
|
* @package cake.tests
|
||
|
* @subpackage cake.tests.fixtures
|
||
|
*/
|
||
|
class ArosAcoFixture extends CakeTestFixture {
|
||
|
var $name = 'ArosAco';
|
||
|
var $fields = array(
|
||
|
'id' => array('type' => 'integer', 'key' => 'primary'),
|
||
|
'aro_id' => array('type' => 'integer', 'length' => 10, 'null' => false),
|
||
|
'aco_id' => array('type' => 'integer', 'length' => 10, 'null' => false),
|
||
|
'_create' => array('type' => 'string', 'length' => 2, 'null' => false, 'default' => '0'),
|
||
|
'_read' => array('type' => 'string', 'length' => 2, 'null' => false, 'default' => '0'),
|
||
|
'_update' => array('type' => 'string', 'length' => 2, 'null' => false, 'default' => '0'),
|
||
|
'_delete' => array('type' => 'string', 'length' => 2, 'null' => false, 'default' => '0')
|
||
|
);
|
||
|
var $records = array(
|
||
|
);
|
||
|
}
|
||
|
|
||
|
?>
|