- Drag & Drop Sortierung im Anlagenbaum (Geschwister-Ebene) - UNIQUE KEY uk_kundenkarte_societe_system um fk_contact erweitert - Automatische DB-Migration beim Modul-Aktivieren - Visueller Abstand zwischen Root-Elementen Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
545 B
SQL
Executable file
12 lines
545 B
SQL
Executable file
-- ============================================================================
|
|
-- 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;
|