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