kundenkarte/sql/llx_kundenkarte_equipment_panel.sql
data 06f8bc8fde Version 3.5.0 - Drag & Drop Sortierung, Duplicate-Key-Fix
- 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>
2026-02-18 21:05:13 +01:00

28 lines
1.2 KiB
SQL
Executable file

-- ============================================================================
-- Copyright (C) 2026 Alles Watt lauft
--
-- Equipment Panel table (Schaltschrankfelder)
-- Represents physical sections/fields in a distribution board
-- ============================================================================
CREATE TABLE llx_kundenkarte_equipment_panel (
rowid INTEGER AUTO_INCREMENT PRIMARY KEY,
entity INTEGER DEFAULT 1 NOT NULL,
fk_anlage INTEGER NOT NULL, -- Zählerschrank/UV that contains this panel
label VARCHAR(128), -- "Feld 1", "Linkes Feld", etc.
position INTEGER DEFAULT 0, -- Order (left to right)
note_private TEXT,
status SMALLINT DEFAULT 1, -- 1=active, 0=inactive
date_creation DATETIME,
tms TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
fk_user_creat INTEGER,
fk_user_modif INTEGER,
import_key VARCHAR(14),
INDEX idx_panel_anlage (fk_anlage),
CONSTRAINT fk_panel_anlage FOREIGN KEY (fk_anlage)
REFERENCES llx_kundenkarte_anlage(rowid) ON DELETE CASCADE
) ENGINE=InnoDB;