<?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 = [
];
}