17 lines
451 B
Plaintext
17 lines
451 B
Plaintext
<?php
|
|
// $Id$
|
|
|
|
function menu_schema() {
|
|
$schema['menu_custom'] = array(
|
|
'fields' => array(
|
|
'menu_name' => array('type' => 'varchar', 'length' => 255, '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;
|
|
}
|
|
|