Skip to content
Snippets Groups Projects
Commit 7855cf70 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

New: Can edit sending methods

parent 5c75347f
No related branches found
No related tags found
No related merge requests found
......@@ -104,7 +104,7 @@ insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) v
alter table llx_product_stock add column pmp double(24,8) default 0 NOT NULL;
alter table llx_expedition_methode change statut active tinyint DEFAULT 1;
alter table llx_expedition_methode change statut active;
INSERT INTO llx_expedition_methode (rowid,code,libelle,description,active) VALUES (1,'CATCH','Catch','Catch by client',1);
INSERT INTO llx_expedition_methode (rowid,code,libelle,description,active) VALUES (2,'TRANS','Transporter','Generic transporter',1);
......
......@@ -6,7 +6,7 @@
-- when current version is 2.4.0 or higher.
--
alter table llx_expedition_methode change statut active;
alter table llx_expedition_methode change statut active tinyint DEFAULT 1;
update llx_actioncomm set datep = datea where datep is null;
......
......@@ -25,5 +25,5 @@ create table llx_expedition_methode
code varchar(30) NOT NULL,
libelle varchar(50) NOT NULL,
description text,
statut tinyint DEFAULT 0
active tinyint DEFAULT 0
)type=innodb;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment