prefix can be null
This commit is contained in:
parent
874c60035f
commit
b2ea91e0cc
@ -121,6 +121,6 @@ ALTER TABLE llx_societe ADD INDEX idx_societe_warehouse(fk_warehouse);
|
|||||||
|
|
||||||
ALTER TABLE llx_socpeople MODIFY poste varchar(255);
|
ALTER TABLE llx_socpeople MODIFY poste varchar(255);
|
||||||
|
|
||||||
ALTER TABLE llx_menu ADD COLUMN prefix varchar(255) NOT NULL AFTER titre;
|
ALTER TABLE llx_menu ADD COLUMN prefix varchar(255) NULL AFTER titre;
|
||||||
|
|
||||||
ALTER TABLE llx_chargesociales ADD COLUMN fk_user integer DEFAULT NULL;
|
ALTER TABLE llx_chargesociales ADD COLUMN fk_user integer DEFAULT NULL;
|
||||||
|
|||||||
@ -36,7 +36,7 @@ CREATE TABLE llx_menu
|
|||||||
url varchar(255) NOT NULL, -- Relative (or absolute) url to go
|
url varchar(255) NOT NULL, -- Relative (or absolute) url to go
|
||||||
target varchar(100) NULL, -- Target of Url link
|
target varchar(100) NULL, -- Target of Url link
|
||||||
titre varchar(255) NOT NULL, -- Key for menu translation
|
titre varchar(255) NOT NULL, -- Key for menu translation
|
||||||
prefix varchar(255) NOT NULL, -- prefix
|
prefix varchar(255) NULL, -- prefix
|
||||||
langs varchar(100), -- Lang file to load for translation
|
langs varchar(100), -- Lang file to load for translation
|
||||||
level smallint, -- Deprecated. Not used.
|
level smallint, -- Deprecated. Not used.
|
||||||
perms text, -- Condition to show enabled or disabled
|
perms text, -- Condition to show enabled or disabled
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user