/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/ProfilesFixture.php (3087B)
['type' => 'integer', 'length' => null, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'autoIncrement' => true, 'precision' => null], 'user_id' => ['type' => 'integer', 'length' => null, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null], 'user_accept_contact_method_id' => ['type' => 'integer', 'length' => null, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null], 'first_name' => ['type' => 'string', 'length' => 255, 'null' => false, 'default' => null, 'collate' => 'utf8_general_ci', 'comment' => '', 'precision' => null], 'last_name' => ['type' => 'string', 'length' => 255, 'null' => false, 'default' => null, 'collate' => 'utf8_general_ci', 'comment' => '', 'precision' => null], 'image' => ['type' => 'string', 'length' => 255, 'null' => false, 'default' => null, 'collate' => 'utf8_general_ci', 'comment' => '', 'precision' => null], 'address' => ['type' => 'string', 'length' => 255, 'null' => false, 'default' => null, 'collate' => 'utf8_general_ci', 'comment' => '', 'precision' => null], 'phone' => ['type' => 'integer', 'length' => null, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null], 'accept_terms' => ['type' => 'boolean', 'length' => null, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null], 'created' => ['type' => 'datetime', 'length' => null, 'precision' => null, 'null' => false, 'default' => null, 'comment' => ''], 'modified' => ['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, 'user_id' => 1, 'user_accept_contact_method_id' => 1, 'first_name' => 'Lorem ipsum dolor sit amet', 'last_name' => 'Lorem ipsum dolor sit amet', 'image' => 'Lorem ipsum dolor sit amet', 'address' => 'Lorem ipsum dolor sit amet', 'phone' => 1, 'accept_terms' => 1, 'created' => '2020-08-13 10:22:07', 'modified' => '2020-08-13 10:22:07', ], ]; parent::init(); } }