- Terminal zu Leitung Verbindungen (Junction) implementiert - Snap zum nächsten Punkt auf der Leitung - Cleanup von überflüssigen Pfad-Punkten (cleanupPathPoints) - Terminal-Position nutzt jetzt col-Property aus terminals_config - Einheitlicher Dialog für alle Verbindungstypen - Kleinere Hit-Area für Terminals (verhindert Überlappen) - SQL für anlage_accessory Tabelle hinzugefügt Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
807 B
SQL
12 lines
807 B
SQL
-- ========================================================================
|
|
-- Copyright (C) 2024 Data IT Solution
|
|
--
|
|
-- This program is free software: you can redistribute it and/or modify
|
|
-- it under the terms of the GNU General Public License as published by
|
|
-- the Free Software Foundation, either version 3 of the License, or
|
|
-- (at your option) any later version.
|
|
-- ========================================================================
|
|
|
|
ALTER TABLE llx_kundenkarte_anlage_accessory ADD UNIQUE INDEX uk_anlage_accessory (fk_anlage, fk_product);
|
|
ALTER TABLE llx_kundenkarte_anlage_accessory ADD INDEX idx_accessory_anlage (fk_anlage);
|
|
ALTER TABLE llx_kundenkarte_anlage_accessory ADD CONSTRAINT fk_accessory_anlage FOREIGN KEY (fk_anlage) REFERENCES llx_kundenkarte_anlage(rowid) ON DELETE CASCADE;
|