New: Ajout de box_order dans la tables llx_boxes pour choisir l'ordre dans lequel les boites s'affichent.

This commit is contained in:
Laurent Destailleur 2005-01-18 20:24:02 +00:00
parent e630cd96d3
commit 8f66c2fd51
2 changed files with 5 additions and 2 deletions

View File

@ -5,6 +5,9 @@
-- sans AUCUNE erreur ni warning
-- ;
alter table llx_boxes add box_order smallint default 0 NOT NULL;
alter table llx_user drop column module_comm;
alter table llx_user drop column module_compta;

View File

@ -28,6 +28,6 @@ create table llx_boxes
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
box_id integer NOT NULL,
position smallint NOT NULL
position smallint NOT NULL,
box_order smallint default 0 NOT NULL
)type=innodb;