1-- ========================================================================
2-- Copyright (C) 2007		Patrick Raguin		<patrick.raguin@gmail.com>
3-- Copyright (C) 2007-2008	Laurent Destailleur	<eldy@users.sourceforge.net>
4-- Copyright (C) 2009-2012	Regis Houssin		<regis.houssin@inodbox.com>
5-- Copyright (C) 2012		Marcos García		<marcosgdf@gmail.com>
6--
7-- This program is free software; you can redistribute it and/or modify
8-- it under the terms of the GNU General Public License as published by
9-- the Free Software Foundation; either version 3 of the License, or
10-- (at your option) any later version.
11--
12-- This program is distributed in the hope that it will be useful,
13-- but WITHOUT ANY WARRANTY; without even the implied warranty of
14-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15-- GNU General Public License for more details.
16--
17-- You should have received a copy of the GNU General Public License
18-- along with this program. If not, see <https://www.gnu.org/licenses/>.
19--
20-- ========================================================================
21
22
23CREATE TABLE llx_menu
24(
25	rowid         integer AUTO_INCREMENT NOT NULL PRIMARY KEY,
26	menu_handler  varchar(16) NOT NULL,						-- Menu handler name
27	entity        integer DEFAULT 1 NOT NULL,				-- Multi company id
28	module        varchar(255),								-- Module name if record is added by a module
29	type          varchar(4) NOT NULL,						-- Menu top or left
30	mainmenu      varchar(100) NOT NULL,					-- Name family/module for top menu (home, companies, ...)
31    leftmenu      varchar(100) NULL,						-- Name family/module for left menu (setup, info, ...)
32	fk_menu       integer NOT NULL,							-- 0 or Id of mother menu line, or -1 if we use fk_mainmenu and fk_leftmenu
33    fk_mainmenu   varchar(100),								--
34    fk_leftmenu   varchar(100),								--
35	position      integer NOT NULL,							-- Sort order of entry
36	url           varchar(255) NOT NULL,					-- Relative (or absolute) url to go
37	target        varchar(100) NULL,						-- Target of Url link
38	titre         varchar(255) NOT NULL,					-- Key for menu translation
39	prefix        varchar(255) NULL,					    -- prefix
40	langs         varchar(100),								-- Lang file to load for translation
41	level         smallint,									-- Deprecated. Not used.
42	perms         text,										-- Condition to show enabled or disabled
43	enabled       text NULL, 					            -- Condition to show or hide
44	usertype      integer NOT NULL DEFAULT 0,				-- 0 if menu for all users, 1 for external only, 2 for internal only
45	tms           timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
46) ENGINE=innodb;
47