| 1234567891011121314151617181920212223242526 |
- <?php
- namespace Tools\Test\Fixture;
- use Cake\TestSuite\Fixture\TestFixture;
- class StringCommentsFixture extends TestFixture {
- /**
- * @var array
- */
- public array $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']]],
- ];
- /**
- * @var array
- */
- public array $records = [
- ];
- }
|