Add field other in emailing_target

This commit is contained in:
Laurent Destailleur 2009-01-25 19:25:09 +00:00
parent 40d6ae13cb
commit 1820507ed4
3 changed files with 6 additions and 0 deletions

View File

@ -22,9 +22,13 @@ insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) v
insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (73, 'facture_fourn', 'external', 'SERVICE', 'Contact fournisseur prestation', 1);
alter table llx_product_stock add column pmp double(24,8) default 0 NOT NULL;
alter table llx_product add column pmp double(24,8) default 0 NOT NULL;
ALTER TABLE llx_bank ADD INDEX idx_bank_datev(datev);
ALTER TABLE llx_bank ADD INDEX idx_bank_dateo(dateo);
ALTER TABLE llx_bank ADD INDEX idx_bank_fk_account(fk_account);
ALTER TABLE llx_bank ADD INDEX idx_bank_rappro(rappro);
ALTER TABLE llx_mailing_cibles add column other varchar(255) NULL,

View File

@ -27,6 +27,7 @@ create table llx_mailing_cibles
nom varchar(160),
prenom varchar(160),
email varchar(160) NOT NULL,
other varchar(255) NULL,
statut smallint NOT NULL DEFAULT 0,
url varchar(160),
date_envoi datetime

View File

@ -49,6 +49,7 @@ create table llx_product
weight_units tinyint DEFAULT NULL,
volume float DEFAULT NULL,
volume_units tinyint DEFAULT NULL,
pmp double(24,8) default 0 NOT NULL;
canvas varchar(15) DEFAULT '',
finished tinyint DEFAULT NULL,
import_key varchar(14)