adding example apps, fixing powerup issues
[feisty_meow.git] / production / example_apps / shared_calendar / tests / Fixture / UsersFixture.php
1 <?php
2 namespace App\Test\Fixture;
3
4 use Cake\TestSuite\Fixture\TestFixture;
5
6 /**
7  * UsersFixture
8  *
9  */
10 class UsersFixture extends TestFixture
11 {
12
13     /**
14      * Fields
15      *
16      * @var array
17      */
18     // @codingStandardsIgnoreStart
19     public $fields = [
20         'id' => ['type' => 'integer', 'length' => 11, 'unsigned' => true, 'null' => false, 'default' => null, 'comment' => '', 'autoIncrement' => true, 'precision' => null],
21         'name' => ['type' => 'string', 'length' => 128, 'null' => false, 'default' => null, 'collate' => 'utf8_general_ci', 'comment' => '', 'precision' => null, 'fixed' => null],
22         'token' => ['type' => 'string', 'length' => 2048, 'null' => true, 'default' => null, 'collate' => 'utf8_general_ci', 'comment' => '', 'precision' => null, 'fixed' => null],
23         'created' => ['type' => 'datetime', 'length' => null, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null],
24         'modified' => ['type' => 'datetime', 'length' => null, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null],
25         '_indexes' => [
26             'name' => ['type' => 'index', 'columns' => ['name'], 'length' => []],
27         ],
28         '_constraints' => [
29             'primary' => ['type' => 'primary', 'columns' => ['id'], 'length' => []],
30         ],
31         '_options' => [
32             'engine' => 'InnoDB',
33             'collation' => 'utf8_general_ci'
34         ],
35     ];
36     // @codingStandardsIgnoreEnd
37
38     /**
39      * Records
40      *
41      * @var array
42      */
43     public $records = [
44         [
45             'id' => 1,
46             'name' => 'Lorem ipsum dolor sit amet',
47             'token' => 'Lorem ipsum dolor sit amet',
48             'created' => '2017-07-30 22:29:56',
49             'modified' => '2017-07-30 22:29:56'
50         ],
51     ];
52 }