table('product_attributes', ['id' => false, 'primary_key' => ['id']]); $table->addColumn('id', 'uuid', [ 'default' => null, 'null' => false, ]); $table->addColumn('product_id', 'uuid', [ 'default' => null, 'null' => false, ]); $table->addColumn('product_category_attribute_id', 'uuid', [ 'default' => null, 'null' => false, ]); $table->addColumn('attribute_value', 'string', [ 'default' => null, 'limit' => 255, 'null' => true, ]); $table->addColumn('product_category_attribute_option_id', 'uuid', [ 'default' => null, 'null' => true, ]); $table->create(); } }