['type' => 'uuid'], 'name' => ['type' => 'string', 'length' => 255, 'null' => false], 'product_category_id' => ['type' => 'uuid'], 'product_type_id' => ['type' => 'integer', 'length' => 11, 'null' => false], '_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]], ]; /** * Init method * * @return void */ public function init(): void { $this->records = [ [ 'id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317', 'name' => '12AWG RED TXL Wire', 'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23', 'product_type_id' => 1, ], ]; parent::init(); } }