Ein Attribut in s_order_attributes zurücksetzen

Wir haben das so gelöst aber ist das auch der performanteste Weg?:

// Clear all attributes
$orderAttributeModel = Shopware()->Models()->getRepository('Shopware\Models\Attribute\Order')->findAll();

/** @var \Shopware\Models\Attribute\Order $orderAttributeModelItem */
foreach ($orderAttributeModel as $orderAttributeModelItem) {
         $orderAttributeModelItem->setAttrOrderTest(0);
         Shopware()->Models()->persist($orderAttributeModelItem);
         Shopware()->Models()->flush();
}