Fix: Add missing ref_ext field
This commit is contained in:
parent
7418331a79
commit
bfe3938c94
@ -30,4 +30,6 @@ DELETE from llx_const where NAME = 'MAIN_MENUFRONT_BARRETOP';
|
|||||||
DELETE from llx_const where NAME = 'MAIN_MENU_BARRELEFT';
|
DELETE from llx_const where NAME = 'MAIN_MENU_BARRELEFT';
|
||||||
DELETE from llx_const where NAME = 'MAIN_MENUFRONT_BARRELEFT';
|
DELETE from llx_const where NAME = 'MAIN_MENUFRONT_BARRELEFT';
|
||||||
|
|
||||||
|
ALTER TABLE llx_facture_fourn ADD column ref_ext varchar(30) after entity;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -24,8 +24,12 @@
|
|||||||
create table llx_facture_fourn
|
create table llx_facture_fourn
|
||||||
(
|
(
|
||||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
|
|
||||||
facnumber varchar(50) NOT NULL,
|
facnumber varchar(50) 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)
|
||||||
|
|
||||||
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