commit
962c4b9c32
@ -1121,3 +1121,12 @@ ALTER TABLE llx_extrafields ADD alwayseditable INTEGER DEFAULT 0 AFTER pos;
|
|||||||
-- add supplier webservice fields
|
-- add supplier webservice fields
|
||||||
ALTER TABLE llx_societe ADD webservices_url varchar(255) DEFAULT NULL;
|
ALTER TABLE llx_societe ADD webservices_url varchar(255) DEFAULT NULL;
|
||||||
ALTER TABLE llx_societe ADD webservices_key varchar(128) DEFAULT NULL;
|
ALTER TABLE llx_societe ADD webservices_key varchar(128) DEFAULT NULL;
|
||||||
|
|
||||||
|
-- changes size of ref in commande_fourn and facture_fourn
|
||||||
|
ALTER TABLE llx_commande_fournisseur MODIFY COLUMN ref VARCHAR(255);
|
||||||
|
ALTER TABLE llx_commande_fournisseur MODIFY COLUMN ref_ext VARCHAR(255);
|
||||||
|
ALTER TABLE llx_commande_fournisseur MODIFY COLUMN ref_supplier VARCHAR(255);
|
||||||
|
|
||||||
|
ALTER TABLE llx_facture_fourn MODIFY COLUMN ref VARCHAR(255);
|
||||||
|
ALTER TABLE llx_facture_fourn MODIFY COLUMN ref_ext VARCHAR(255);
|
||||||
|
ALTER TABLE llx_facture_fourn MODIFY COLUMN ref_supplier VARCHAR(255);
|
||||||
|
|||||||
@ -23,11 +23,11 @@ create table llx_commande_fournisseur
|
|||||||
(
|
(
|
||||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
|
|
||||||
ref varchar(30) NOT NULL, -- order number
|
ref varchar(255) NOT NULL, -- order number
|
||||||
entity integer DEFAULT 1 NOT NULL, -- multi company id
|
entity integer DEFAULT 1 NOT NULL, -- multi company id
|
||||||
|
|
||||||
ref_ext varchar(30), -- reference into an external system (not used by dolibarr)
|
ref_ext varchar(64), -- reference into an external system (not used by dolibarr)
|
||||||
ref_supplier varchar(30),
|
ref_supplier varchar(255),
|
||||||
|
|
||||||
fk_soc integer NOT NULL,
|
fk_soc integer NOT NULL,
|
||||||
fk_projet integer DEFAULT 0, -- project id
|
fk_projet integer DEFAULT 0, -- project id
|
||||||
|
|||||||
@ -22,11 +22,11 @@
|
|||||||
create table llx_facture_fourn
|
create table llx_facture_fourn
|
||||||
(
|
(
|
||||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
ref varchar(30),
|
ref varchar(255),
|
||||||
ref_supplier varchar(50) NOT NULL,
|
ref_supplier varchar(255) NOT NULL,
|
||||||
entity integer DEFAULT 1 NOT NULL, -- multi company id
|
entity integer DEFAULT 1 NOT NULL, -- multi company id
|
||||||
|
|
||||||
ref_ext varchar(30), -- reference into an external system (not used by dolibarr)
|
ref_ext varchar(255), -- reference into an external system (not used by dolibarr)
|
||||||
|
|
||||||
type smallint DEFAULT 0 NOT NULL,
|
type smallint DEFAULT 0 NOT NULL,
|
||||||
fk_soc integer NOT NULL,
|
fk_soc integer NOT NULL,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user