1 -- @tag: ar_add_qrbill_without_amount
 
   2 -- @description: Spalte für QR-Rechnung ohne Betrag
 
   3 -- @depends: release_3_5_8
 
   4 ALTER TABLE ar ADD COLUMN qrbill_without_amount boolean;
 
   5 ALTER TABLE ar ALTER COLUMN qrbill_without_amount SET DEFAULT FALSE;
 
   6 UPDATE ar SET qrbill_without_amount = FALSE;