Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/friendsofcake/bootstrap-ui/tests/Fixture/ArticlesFixture.php
<?php
namespace BootstrapUI\Test\Fixture;

use
Cake\TestSuite\Fixture\TestFixture;

class
ArticlesFixture extends TestFixture
{
    public
$fields = [
       
'id' => ['type' => 'integer'],
       
'author_id' => ['type' => 'integer', 'null' => true],
       
'title' => ['type' => 'string', 'null' => true],
       
'body' => 'text',
       
'_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]],
    ];

    public
$records = [
    ];
}