kundenkarte/sql/llx_kundenkarte_anlage_accessory.sql
data 677caffcf4 fix(sql): Fehlende SQL-Dateien für anlage_accessory Tabelle
Die Tabelle war nur in der Migration vorhanden, aber nicht als
SQL-Datei für Neuinstallationen.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-03-04 12:04:01 +01:00

19 lines
852 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.
-- ========================================================================
CREATE TABLE llx_kundenkarte_anlage_accessory (
rowid integer AUTO_INCREMENT PRIMARY KEY,
fk_anlage integer NOT NULL,
fk_product integer NOT NULL,
qty double DEFAULT 1,
rang integer DEFAULT 0,
note varchar(255) DEFAULT NULL,
date_creation datetime DEFAULT NULL,
fk_user_creat integer DEFAULT NULL
) ENGINE=InnoDB;