48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace App\Test\Fixture;
 | 
						|
 | 
						|
use Cake\TestSuite\Fixture\TestFixture;
 | 
						|
 | 
						|
/**
 | 
						|
 * NeedsFixture
 | 
						|
 *
 | 
						|
 */
 | 
						|
class NeedsFixture extends TestFixture
 | 
						|
{
 | 
						|
 | 
						|
    /**
 | 
						|
     * Fields
 | 
						|
     *
 | 
						|
     * @var array
 | 
						|
     */
 | 
						|
    // @codingStandardsIgnoreStart
 | 
						|
    public $fields = [
 | 
						|
        'id' => ['type' => 'integer', 'length' => 10, 'unsigned' => true, 'null' => false, 'default' => null, 'comment' => '', 'autoIncrement' => true, 'precision' => null],
 | 
						|
        'user_id' => ['type' => 'integer', 'length' => 10, 'unsigned' => true, 'null' => false, 'default' => null, 'comment' => 'Refugee', 'precision' => null, 'autoIncrement' => null],
 | 
						|
        'item_id' => ['type' => 'integer', 'length' => 10, 'unsigned' => true, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null],
 | 
						|
        'created' => ['type' => 'date', 'length' => null, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null],
 | 
						|
        '_constraints' => [
 | 
						|
            'primary' => ['type' => 'primary', 'columns' => ['id'], 'length' => []],
 | 
						|
        ],
 | 
						|
        '_options' => [
 | 
						|
            'engine' => 'InnoDB',
 | 
						|
            'collation' => 'utf8_bin'
 | 
						|
        ],
 | 
						|
    ];
 | 
						|
    // @codingStandardsIgnoreEnd
 | 
						|
 | 
						|
    /**
 | 
						|
     * Records
 | 
						|
     *
 | 
						|
     * @var array
 | 
						|
     */
 | 
						|
    public $records = [
 | 
						|
        [
 | 
						|
            'id' => 1,
 | 
						|
            'user_id' => 1,
 | 
						|
            'item_id' => 1,
 | 
						|
            'created' => '2016-12-01'
 | 
						|
        ],
 | 
						|
    ];
 | 
						|
}
 |