diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-06-05 09:33:57 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-06-05 09:33:57 +0000 |
commit | 745222200e0670f55c6d695e467558171b7bb5d8 (patch) | |
tree | 1a8dcec96a559e20cb797776b65ce8f0ac71fd4d /modules/system/system.schema | |
parent | b0735a04d7778afb759007ef3e06d147d225f8b3 (diff) | |
download | brdo-745222200e0670f55c6d695e467558171b7bb5d8.tar.gz brdo-745222200e0670f55c6d695e467558171b7bb5d8.tar.bz2 |
- Patch #144746 by drewish: fixed menu_router schema.
Diffstat (limited to 'modules/system/system.schema')
-rw-r--r-- | modules/system/system.schema | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.schema b/modules/system/system.schema index 5cf4b21c7..a3f384b3c 100644 --- a/modules/system/system.schema +++ b/modules/system/system.schema @@ -85,7 +85,7 @@ function system_schema() { 'title_arguments' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''), 'type' => array('type' => 'int', 'not null' => TRUE, 'default' => 0), 'block_callback' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''), - 'description' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''), + 'description' => array('type' => 'text', 'not null' => TRUE), 'position' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''), 'weight' => array('type' => 'int', 'not null' => TRUE, 'default' => 0), 'file' => array('type' => 'text', 'size' => 'medium') |