2
0
forked from Wavyzz/dolibarr

Prepare to allow to define nb of lines fox each box

This commit is contained in:
Laurent Destailleur
2012-03-17 14:59:45 +01:00
parent da94f76364
commit 1ddcd5ffb0
2 changed files with 5 additions and 3 deletions

View File

@@ -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_deplacement ADD COLUMN extraparams varchar(255) AFTER note_public;
ALTER TABLE llx_boxes ADD COLUMN maxline integer NULL;

View File

@@ -1,6 +1,6 @@
-- ============================================================================
-- Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
-- Copyright (C) 2006 Laurent Destailleur <eldy@users.sourceforge.net>
-- Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
-- Copyright (C) 2006-2012 Laurent Destailleur <eldy@users.sourceforge.net>
--
-- 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
@@ -28,5 +28,6 @@ create table llx_boxes
box_id integer NOT NULL,
position smallint 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;