2nd step : Add table
This commit is contained in:
parent
16b12b33fc
commit
8328c04624
@ -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;
|
ALTER TABLE llx_chargesociales ADD COLUMN fk_projet integer DEFAULT NULL;
|
||||||
|
|
||||||
DELETE FROM llx_const WHERE name = __ENCRYPT('BANK_DISABLE_DIRECT_INPUT')__;
|
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;
|
||||||
|
|||||||
37
htdocs/install/mysql/tables/llx_payment_various.sql
Normal file
37
htdocs/install/mysql/tables/llx_payment_various.sql
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
-- ===================================================================
|
||||||
|
-- Copyright (C) 2017 Alexandre Spangaro <aspangaro@zendsi.com>
|
||||||
|
--
|
||||||
|
-- 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 <http://www.gnu.org/licenses/>.
|
||||||
|
--
|
||||||
|
-- ===================================================================
|
||||||
|
|
||||||
|
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;
|
||||||
Loading…
Reference in New Issue
Block a user