diff --git a/scripts/contract/delete-unused-billingaddresses.php b/scripts/contract/delete-unused-billingaddresses.php
index e908b4053..a2817d7d9 100644
--- a/scripts/contract/delete-unused-billingaddresses.php
+++ b/scripts/contract/delete-unused-billingaddresses.php
@@ -60,7 +60,7 @@ foreach(AddressLinkModel::search(["type" => "billing"]) as $link) {
echo $bill_id." has fibu account number\n";
}
- echo "deleting ".$bill_id."\n";
+ /*echo "deleting ".$bill_id."\n";
$bill->delete();
foreach(AddresstypeModel::search(["address_id" => $bill_id]) as $type) {
echo "deleting AddressType bill_id $bill_id\n";
@@ -68,7 +68,7 @@ foreach(AddressLinkModel::search(["type" => "billing"]) as $link) {
}
echo "deleting link ".$link->origin_address_id." -> ".$link->address_id."\n";
$link->delete();
-
+ */
}