Update llx_c_incoterms.sql

add column label for short standard term in english
(libelle to use for long description (in user language))
This commit is contained in:
UT from dolibit 2020-07-14 14:15:44 +02:00 committed by GitHub
parent 8b5f4fe9a6
commit 60f904bbd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
-- ======================================================================== -- ========================================================================
-- Copyright (C) 2015 Laurent Destailleur <eldy@users.sourceforge.net> -- Copyright (C) 2015 Laurent Destailleur <eldy@users.sourceforge.net>
-- Copyright (C) 2020 Udo Tamm <software@dolibit.de>
-- --
-- This program is free software; you can redistribute it and/or modify -- 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 -- it under the terms of the GNU General Public License as published by
@ -19,6 +20,7 @@
CREATE TABLE llx_c_incoterms ( CREATE TABLE llx_c_incoterms (
rowid integer AUTO_INCREMENT PRIMARY KEY, rowid integer AUTO_INCREMENT PRIMARY KEY,
code varchar(3) NOT NULL, code varchar(3) NOT NULL,
label varchar(100) NOT NULL,
libelle varchar(255) NOT NULL, libelle varchar(255) NOT NULL,
active tinyint DEFAULT 1 NOT NULL active tinyint DEFAULT 1 NOT NULL
) ENGINE=innodb; ) ENGINE=innodb;