From 8328c046247fa76389db63fc2387be681eb8e992 Mon Sep 17 00:00:00 2001 From: Alexandre SPANGARO Date: Sat, 18 Mar 2017 08:12:29 +0100 Subject: [PATCH] 2nd step : Add table --- .../install/mysql/migration/5.0.0-6.0.0.sql | 20 ++++++++++ .../mysql/tables/llx_payment_various.sql | 37 +++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 htdocs/install/mysql/tables/llx_payment_various.sql diff --git a/htdocs/install/mysql/migration/5.0.0-6.0.0.sql b/htdocs/install/mysql/migration/5.0.0-6.0.0.sql index eb972b6c298..5cdc53be443 100644 --- a/htdocs/install/mysql/migration/5.0.0-6.0.0.sql +++ b/htdocs/install/mysql/migration/5.0.0-6.0.0.sql @@ -125,3 +125,23 @@ INSERT INTO llx_const (name, entity, value, type, visible, note) VALUES ('USER_A ALTER TABLE llx_chargesociales ADD COLUMN fk_projet integer DEFAULT NULL; DELETE FROM llx_const WHERE name = __ENCRYPT('BANK_DISABLE_DIRECT_INPUT')__; + +create table llx_payment_various +( + rowid integer AUTO_INCREMENT PRIMARY KEY, + tms timestamp, + datec datetime, -- Create date + datep date, -- date de paiement + datev date, -- date de valeur (this field should not be here, only into bank tables) + sens smallint DEFAULT 0 NOT NULL, + amount double(24,8) DEFAULT 0 NOT NULL, + fk_typepayment integer NOT NULL, + num_payment varchar(50), -- ref + label varchar(255), + entity integer DEFAULT 1 NOT NULL, -- multi company id + note text, + fk_bank integer, + fk_code_ventilation integer DEFAULT 0, + fk_user_author integer, -- utilisateur qui a cree l'info + fk_user_modif integer -- utilisateur qui a modifié l'info +)ENGINE=innodb; diff --git a/htdocs/install/mysql/tables/llx_payment_various.sql b/htdocs/install/mysql/tables/llx_payment_various.sql new file mode 100644 index 00000000000..fe2751a9b79 --- /dev/null +++ b/htdocs/install/mysql/tables/llx_payment_various.sql @@ -0,0 +1,37 @@ +-- =================================================================== +-- Copyright (C) 2017 Alexandre Spangaro +-- +-- 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 . +-- +-- =================================================================== + +create table llx_payment_various +( + rowid integer AUTO_INCREMENT PRIMARY KEY, + tms timestamp, + datec datetime, -- Create date + datep date, -- date de paiement + datev date, -- date de valeur (this field should not be here, only into bank tables) + sens smallint DEFAULT 0 NOT NULL, + amount double(24,8) DEFAULT 0 NOT NULL, + fk_typepayment integer NOT NULL, + num_payment varchar(50), -- ref + label varchar(255), + entity integer DEFAULT 1 NOT NULL, -- multi company id + note text, + fk_bank integer, + fk_code_ventilation integer DEFAULT 0, + fk_user_author integer, -- utilisateur qui a cree l'info + fk_user_modif integer -- utilisateur qui a modifié l'info +)ENGINE=innodb; \ No newline at end of file