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:
parent
e630cd96d3
commit
8f66c2fd51
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user