kundenkarte/sql/update_3.0.0.sql
2026-02-11 06:50:23 +01:00

12 lines
545 B
SQL

-- ============================================================================
-- 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;