Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/croogo/croogo/Meta/tests/Fixture/MetaFixture.php
<?php

namespace Croogo\Meta\Test\Fixture;

use
Croogo\Core\TestSuite\CroogoTestFixture;

class
MetaFixture extends CroogoTestFixture
{

    public
$name = 'Meta';

    public
$table = 'meta';

    public
$fields = [
       
'id' => ['type' => 'integer', 'null' => false, 'default' => null, 'length' => 20],
       
'model' => ['type' => 'string', 'null' => false, 'default' => 'Node'],
       
'foreign_key' => ['type' => 'integer', 'null' => true, 'default' => null, 'length' => 20],
       
'key' => ['type' => 'string', 'null' => false, 'default' => null],
       
'value' => ['type' => 'text', 'null' => true, 'default' => null],
       
'weight' => ['type' => 'integer', 'null' => true, 'default' => null],
       
'_constraints' => [
           
'primary' => ['type' => 'primary', 'columns' => ['id']],
        ],
       
'_options' => ['charset' => 'utf8', 'collate' => 'utf8_unicode_ci', 'engine' => 'InnoDB']
    ];

    public
$records = [
        [
           
'id' => 1,
           
'model' => 'Croogo/Nodes.Nodes',
           
'foreign_key' => 1,
           
'key' => 'meta_keywords',
           
'value' => 'key1, key2',
           
'weight' => null
       
],
    ];
}