kissarat

drupal.menu.schema.json

Feb 8th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "menu_custom": {
  3.         "description": "Holds definitions for top-level custom menus (for example, Main menu).",
  4.         "fields": {
  5.             "menu_name": {
  6.                 "type": "varchar",
  7.                 "length": 32,
  8.                 "not null": true,
  9.                 "default": "",
  10.                 "description": "Primary Key: Unique key for menu. This is used as a block delta so length is 32."
  11.             },
  12.             "title": {
  13.                 "type": "varchar",
  14.                 "length": 255,
  15.                 "not null": true,
  16.                 "default": "",
  17.                 "description": "Menu title; displayed at top of block.",
  18.                 "translatable": true
  19.             },
  20.             "description": {
  21.                 "type": "text",
  22.                 "not null": false,
  23.                 "description": "Menu description.",
  24.                 "translatable": true
  25.             }
  26.         },
  27.         "primary key": [
  28.             "menu_name"
  29.         ]
  30.     }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment