Table core.menus
This table stores information on the easy to use menu of MixERP.
# Column Name Nullable Data Type Max Length Description
1menu_idinteger0The primary key of this table, which is also a serial field.
2menu_textcharacter varying250The name of the menu.
3urlcharacter varying250The location of the menu.
4menu_codecharacter varying12The code of the menu, which is also a unique field.
5levelsmallint0
6parent_menu_idinteger0Foreign key to the table core.menus.
7audit_user_idinteger0Contains the id of the user who last inserted or updated the corresponding row.
8audit_tstimestamp with time zone0Contains the date and timestamp of the last insert or update action.

Foreign Keys

# Column Name Key Name References
6 parent_menu_id menus_parent_menu_id_fkey core.menus.menu_id
7 audit_user_id menus_audit_user_id_fkey office.users.user_id

Indices

Index Name Owner Access Method Definition Description
menus_pkey postgres btree menu_id
menus_menu_code_uix postgres btree upper(menu_code::text)

Check Constraints

Constraint Name Description

Default Values

# Column Name Default
1 menu_id nextval('core.menus_menu_id_seq'::regclass)
8 audit_ts now()

Triggers

Trigger Name Targets On Event Timing Condition Order Orientation Description