blob: 289ccf0f0b8df4309d6a7911b6cd843b6417141a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?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;
}
|