From e34ca5a5398f3e287b32ab3ff94e583e3514ac35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20David?= Date: Thu, 12 Oct 2023 11:57:17 +0200 Subject: [PATCH] #3382 [SQL] fix: remove duplicate file --- ..._accidentinvestigation_attendants_role.sql | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 sql/accidentinvestigation/llx_c_accidentinvestigation_attendants_role.sql diff --git a/sql/accidentinvestigation/llx_c_accidentinvestigation_attendants_role.sql b/sql/accidentinvestigation/llx_c_accidentinvestigation_attendants_role.sql deleted file mode 100644 index 316e4d0b9..000000000 --- a/sql/accidentinvestigation/llx_c_accidentinvestigation_attendants_role.sql +++ /dev/null @@ -1,24 +0,0 @@ --- Copyright (C) 2021-2023 EVARISK --- --- 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. --- --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU General Public License for more details. --- --- You should have received a copy of the GNU General Public License --- along with this program. If not, see https://www.gnu.org/licenses/. - -CREATE TABLE llx_c_accidentinvestigation_attendants_role( - rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL, - entity integer default 1, - ref varchar(128), - label varchar(255), - description text, - active tinyint(4) DEFAULT 1, - position integer DEFAULT 0 -) ENGINE=innodb;