forked from Wavyzz/dolibarr
Prepare to allow to define nb of lines fox each box
This commit is contained in:
@@ -443,3 +443,4 @@ ALTER TABLE llx_facture ADD COLUMN extraparams varchar(255) AFTER import_key;
|
|||||||
ALTER TABLE llx_fichinter ADD COLUMN extraparams varchar(255) AFTER model_pdf;
|
ALTER TABLE llx_fichinter ADD COLUMN extraparams varchar(255) AFTER model_pdf;
|
||||||
ALTER TABLE llx_deplacement ADD COLUMN extraparams varchar(255) AFTER note_public;
|
ALTER TABLE llx_deplacement ADD COLUMN extraparams varchar(255) AFTER note_public;
|
||||||
|
|
||||||
|
ALTER TABLE llx_boxes ADD COLUMN maxline integer NULL;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
-- ============================================================================
|
-- ============================================================================
|
||||||
-- Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
-- Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
-- Copyright (C) 2006 Laurent Destailleur <eldy@users.sourceforge.net>
|
-- Copyright (C) 2006-2012 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
--
|
--
|
||||||
-- This program is free software; you can redistribute it and/or modify
|
-- This program is free software; you can redistribute it and/or modify
|
||||||
-- it under the terms of the GNU General Public License as published by
|
-- it under the terms of the GNU General Public License as published by
|
||||||
@@ -28,5 +28,6 @@ create table llx_boxes
|
|||||||
box_id integer NOT NULL,
|
box_id integer NOT NULL,
|
||||||
position smallint NOT NULL,
|
position smallint NOT NULL,
|
||||||
box_order varchar(3) NOT NULL,
|
box_order varchar(3) NOT NULL,
|
||||||
fk_user integer default 0 NOT NULL
|
fk_user integer default 0 NOT NULL,
|
||||||
|
maxline integer NULL
|
||||||
)ENGINE=innodb;
|
)ENGINE=innodb;
|
||||||
|
|||||||
Reference in New Issue
Block a user