-- ============================================================================ -- Copyright (C) 2026 Alles Watt lauft -- -- Update script for version 3.0.0 -- Adds can_have_equipment column to anlage_type table -- ============================================================================ -- Add can_have_equipment to existing anlage_type table ALTER TABLE llx_kundenkarte_anlage_type ADD COLUMN can_have_equipment tinyint DEFAULT 0 NOT NULL COMMENT 'Ob dieser Typ Equipment (Hutschienen-Komponenten) haben kann' AFTER allowed_parent_types;