12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace App\Test\Fixture;
- use Cake\TestSuite\Fixture\TestFixture;
- /**
- * AddonsFixture
- *
- */
- class AddonsFixture extends TestFixture
- {
- /**
- * Fields
- *
- * @var array
- */
- // @codingStandardsIgnoreStart
- public $fields = [
- 'id' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'autoIncrement' => true, 'precision' => null],
- 'name' => ['type' => 'string', 'length' => 255, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
- 'token' => ['type' => 'string', 'length' => 255, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
- '_constraints' => [
- 'primary' => ['type' => 'primary', 'columns' => ['id'], 'length' => []],
- ],
- '_options' => [
- 'engine' => 'InnoDB',
- 'collation' => 'utf8_general_ci'
- ],
- ];
- // @codingStandardsIgnoreEnd
- /**
- * Records
- *
- * @var array
- */
- public $records = [
- [
- 'id' => 1,
- 'name' => 'Lorem ipsum dolor sit amet',
- 'token' => 'Lorem ipsum dolor sit amet'
- ],
- ];
- }
|