ordnumber => { type => 'text' },
paid => { type => 'numeric', default => '0', not_null => 1, precision => 15, scale => 5 },
payment_id => { type => 'integer' },
+ qrbill_without_amount => { type => 'boolean', default => 'false' },
quodate => { type => 'date' },
quonumber => { type => 'text' },
salesman_id => { type => 'integer' },
--- /dev/null
+-- @tag: ar_add_qrbill_without_amount
+-- @description: Spalte für QR-Rechnung ohne Betrag
+-- @depends: release_3_5_8
+ALTER TABLE ar ADD COLUMN qrbill_without_amount boolean;
+ALTER TABLE ar ALTER COLUMN qrbill_without_amount SET DEFAULT FALSE;
+UPDATE ar SET qrbill_without_amount = FALSE;