12 lines
572 B
SQL
Executable file
12 lines
572 B
SQL
Executable file
--
|
|
-- Script run when an upgrade of Dolibarr is done. Whatever is the Dolibarr version.
|
|
--
|
|
|
|
-- Add path_data column for manually drawn connection paths
|
|
ALTER TABLE llx_kundenkarte_equipment_connection ADD COLUMN IF NOT EXISTS path_data TEXT AFTER position_y;
|
|
|
|
-- Add icon_file column for custom SVG/PNG schematic symbols
|
|
ALTER TABLE llx_kundenkarte_equipment_type ADD COLUMN IF NOT EXISTS icon_file VARCHAR(255) AFTER picto;
|
|
|
|
-- Add terminals_config if not exists
|
|
ALTER TABLE llx_kundenkarte_equipment_type ADD COLUMN IF NOT EXISTS terminals_config TEXT AFTER fk_product;
|