New: Can edit sending methods

This commit is contained in:
Laurent Destailleur 2009-01-22 22:55:53 +00:00
parent 5c75347faa
commit 7855cf7086
3 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -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;

View File

@ -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;