Skip to content
Snippets Groups Projects
Commit 8f66c2fd authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

New: Ajout de box_order dans la tables llx_boxes pour choisir l'ordre dans...

New: Ajout de box_order dans la tables llx_boxes pour choisir l'ordre dans lequel les boites s'affichent.
parent e630cd96
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
......@@ -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;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment