1 -- @tag: transaction_description_not_null
 
   2 -- @description: Das Feld "transaction_description" sollte keine NULL-Werte enthalten.
 
   3 -- @depends: transaction_description delivery_orders
 
   4 UPDATE ap SET transaction_description = '' WHERE transaction_description IS NULL;
 
   5 UPDATE ar SET transaction_description = '' WHERE transaction_description IS NULL;
 
   6 UPDATE oe SET transaction_description = '' WHERE transaction_description IS NULL;
 
   7 UPDATE delivery_orders SET transaction_description = '' WHERE transaction_description IS NULL;