mandator_id => { type => 'text' },
mtime => { type => 'timestamp' },
name => { type => 'text', not_null => 1 },
+ natural_person => { type => 'boolean', default => 'false' },
notes => { type => 'text' },
obsolete => { type => 'boolean', default => 'false' },
order_lock => { type => 'boolean', default => 'false' },
language_id => { type => 'integer' },
mtime => { type => 'timestamp' },
name => { type => 'text', not_null => 1 },
+ natural_person => { type => 'boolean', default => 'false' },
notes => { type => 'text' },
obsolete => { type => 'boolean', default => 'false' },
payment_id => { type => 'integer' },
--- /dev/null
+-- @tag: customer_vendor_add_natural_person
+-- @description: neue Spalte für "natürliche Person" bei Kunden/Lieferanten
+-- @depends: release_3_5_5
+
+ALTER TABLE customer ADD COLUMN natural_person BOOLEAN DEFAULT FALSE;
+ALTER TABLE vendor ADD COLUMN natural_person BOOLEAN DEFAULT FALSE;