-- Copyright (C) 2026 Eduard Wisch -- -- 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. -- -- Tabelle: ein Tool-Lauf (Messung) innerhalb eines Diagnose-Protokolls. -- params/result sind generisches JSON -> neue Tools brauchen kein Schema-Update. CREATE TABLE llx_netdiag_measurement( rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL, entity integer DEFAULT 1 NOT NULL, fk_protocol integer NOT NULL, fk_device integer, tool varchar(64) NOT NULL, category varchar(32), label varchar(255), params text, result longtext, measure_status smallint DEFAULT 0 NOT NULL, date_measure datetime, date_creation datetime NOT NULL, tms timestamp DEFAULT CURRENT_TIMESTAMP NOT NULL ) ENGINE=innodb;