From 2899a6dca5397ee66365b0835f2d948d4c579ce7 Mon Sep 17 00:00:00 2001 From: lmarcouiller Date: Mon, 2 May 2022 10:41:59 +0200 Subject: [PATCH] fix database files --- ...sql => llx_webhook_target-webhook.key.sql} | 0 ...get.sql => llx_webhook_target-webhook.sql} | 0 .../llx_webhook_target_extrafields.key.sql | 19 --------------- .../tables/llx_webhook_target_extrafields.sql | 23 ------------------- 4 files changed, 42 deletions(-) rename htdocs/install/mysql/tables/{llx_webhook_target.key.sql => llx_webhook_target-webhook.key.sql} (100%) rename htdocs/install/mysql/tables/{llx_webhook_target.sql => llx_webhook_target-webhook.sql} (100%) delete mode 100644 htdocs/install/mysql/tables/llx_webhook_target_extrafields.key.sql delete mode 100644 htdocs/install/mysql/tables/llx_webhook_target_extrafields.sql diff --git a/htdocs/install/mysql/tables/llx_webhook_target.key.sql b/htdocs/install/mysql/tables/llx_webhook_target-webhook.key.sql similarity index 100% rename from htdocs/install/mysql/tables/llx_webhook_target.key.sql rename to htdocs/install/mysql/tables/llx_webhook_target-webhook.key.sql diff --git a/htdocs/install/mysql/tables/llx_webhook_target.sql b/htdocs/install/mysql/tables/llx_webhook_target-webhook.sql similarity index 100% rename from htdocs/install/mysql/tables/llx_webhook_target.sql rename to htdocs/install/mysql/tables/llx_webhook_target-webhook.sql diff --git a/htdocs/install/mysql/tables/llx_webhook_target_extrafields.key.sql b/htdocs/install/mysql/tables/llx_webhook_target_extrafields.key.sql deleted file mode 100644 index c8ebcf12bdc..00000000000 --- a/htdocs/install/mysql/tables/llx_webhook_target_extrafields.key.sql +++ /dev/null @@ -1,19 +0,0 @@ --- Copyright (C) ---Put here your own copyright and developer email--- --- --- 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/. - - --- BEGIN MODULEBUILDER INDEXES -ALTER TABLE llx_webhook_target_extrafields ADD INDEX idx_target_fk_object(fk_object); --- END MODULEBUILDER INDEXES diff --git a/htdocs/install/mysql/tables/llx_webhook_target_extrafields.sql b/htdocs/install/mysql/tables/llx_webhook_target_extrafields.sql deleted file mode 100644 index a01ac0e1d1c..00000000000 --- a/htdocs/install/mysql/tables/llx_webhook_target_extrafields.sql +++ /dev/null @@ -1,23 +0,0 @@ --- Copyright (C) ---Put here your own copyright and developer email--- --- --- 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_webhook_target_extrafields -( - rowid integer AUTO_INCREMENT PRIMARY KEY, - tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - fk_object integer NOT NULL, - import_key varchar(14) -- import key -) ENGINE=innodb; -