Blame view

tests/Fixture/VariablesFixture.php 2.05 KB
eb481e4f   Alexis Proust   preparation merge...
1
2
3
4
5
6
7
8
9
10
11
12
<?php
namespace App\Test\Fixture;

use Cake\TestSuite\Fixture\TestFixture;

/**
 * VariablesFixture
 *
 */
class VariablesFixture extends TestFixture
{

93790936   Etienne Pallier   Tests Fixtures =>...
13
14
    public $import = ['model' => 'Variables'];
    
eb481e4f   Alexis Proust   preparation merge...
15
16
17
18
19
    /**
     * Fields
     *
     * @var array
     */
93790936   Etienne Pallier   Tests Fixtures =>...
20
    /*
eb481e4f   Alexis Proust   preparation merge...
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
    // @codingStandardsIgnoreStart
    public $fields = [
        'id' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'autoIncrement' => true, 'precision' => null],
        'formule_id' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'autoIncrement' => false, 'precision' => null],
        'symbolegrandeurphysique' => ['type' => 'string', 'length' => 50, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
        'symboleunitemesure' => ['type' => 'string', 'length' => 50, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
		'nomgrandeurphysique' => ['type' => 'string', 'length' => 50, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
        'domainedef' => ['type' => 'string', 'length' => 50, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
		'derivepartielle' => ['type' => 'string', 'length' => 100, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
        '_indexes' => [
            'fk_variables_formules_id' => ['type' => 'index', 'columns' => ['formule_id'], 'length' => []],
        	],
        '_constraints' => [
            'primary' => ['type' => 'primary', 'columns' => ['id'], 'length' => []],
            'fk_variables_formules_id' => ['type' => 'foreign', 'columns' => ['formule_id'], 'references' => ['formules', 'id'], 'update' => 'noAction', 'delete' => 'noAction', 'length' => []],
        	],
        '_options' => [
            'engine' => 'InnoDB',
            'collation' => 'latin1_swedish_ci'
        ],
    ];
93790936   Etienne Pallier   Tests Fixtures =>...
42
43
    // @codingStandardsIgnoreEnd
    */
eb481e4f   Alexis Proust   preparation merge...
44
45
   
}