['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'autoIncrement' => true, 'precision' => null], 'username' => ['type' => 'string', 'length' => 128, 'null' => false, 'default' => null, 'collate' => 'utf8_bin', 'comment' => '', 'precision' => null, 'fixed' => null], 'operator_type_id' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null], 'data_base64' => ['type' => 'string', 'length' => 255, 'null' => false, 'default' => null, 'collate' => 'utf8_bin', 'comment' => '', 'precision' => null, 'fixed' => null], '_constraints' => [ 'primary' => ['type' => 'primary', 'columns' => ['id'], 'length' => []], 'username' => ['type' => 'unique', 'columns' => ['username'], 'length' => []], ], '_options' => [ 'engine' => 'InnoDB', 'collation' => 'utf8_bin' ], ]; // @codingStandardsIgnoreEnd /** * Init method * * @return void */ public function init() { $this->records = [ [ 'id' => 1, 'username' => 'Lorem ipsum dolor sit amet', 'operator_type_id' => 1, 'data_base64' => 'Lorem ipsum dolor sit amet' ], ]; parent::init(); } }