diff options
Diffstat (limited to 'modules/menu/menu.schema')
-rw-r--r-- | modules/menu/menu.schema | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/modules/menu/menu.schema b/modules/menu/menu.schema deleted file mode 100644 index bc8c68a5b..000000000 --- a/modules/menu/menu.schema +++ /dev/null @@ -1,17 +0,0 @@ -<?php -// $Id$ - -function menu_schema() { - $schema['menu_custom'] = array( - 'fields' => array( - // This is used as a block delta so length is 32. - 'menu_name' => array('type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => ''), - 'title' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''), - 'description' => array('type' => 'text', 'not null' => FALSE), - ), - 'primary key' => array('menu_name'), - ); - - return $schema; -} - |