| 123456789101112131415161718 |
- <?php
- namespace Tools\Test\Fixture;
- use Cake\TestSuite\Fixture\TestFixture;
- class StringCommentsFixture extends TestFixture {
- public $fields = [
- 'id' => ['type' => 'integer'],
- 'comment' => ['type' => 'string', 'length' => 255, 'null' => false],
- 'url' => ['type' => 'string', 'length' => 255, 'null' => false],
- 'title' => ['type' => 'string', 'length' => 255, 'null' => false],
- '_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]]
- ];
- public $records = [
- ];
- }
|