/var/www/vhosts/ihelp.ro/_OLD/tests/Fixture
NameSizeModeActions
CauseImagesFixture.php17650644editdlrm
CausesFixture.php34480644editdlrm
ProfilesFixture.php30870644editdlrm
UsersFixture.php25440644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/tests/Fixture/CauseImagesFixture.php (1765B)
['type' => 'integer', 'length' => null, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'autoIncrement' => true, 'precision' => null], 'cause_id' => ['type' => 'integer', 'length' => null, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null], 'image' => ['type' => 'string', 'length' => 255, 'null' => true, 'default' => null, 'collate' => 'utf8_general_ci', 'comment' => '', 'precision' => null], 'created' => ['type' => 'datetime', 'length' => null, 'precision' => null, 'null' => false, 'default' => null, 'comment' => ''], 'modidfied' => ['type' => 'datetime', 'length' => null, 'precision' => null, 'null' => false, 'default' => null, 'comment' => ''], '_constraints' => [ 'primary' => ['type' => 'primary', 'columns' => ['id'], 'length' => []], ], '_options' => [ 'engine' => 'InnoDB', 'collation' => 'utf8_general_ci' ], ]; // phpcs:enable /** * Init method * * @return void */ public function init(): void { $this->records = [ [ 'id' => 1, 'cause_id' => 1, 'image' => 'Lorem ipsum dolor sit amet', 'created' => '2020-08-14 10:56:34', 'modidfied' => '2020-08-14 10:56:34', ], ]; parent::init(); } }