diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-07-04 15:49:44 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-07-04 15:49:44 +0000 |
commit | e0fe1ae8eb5dd4e5d5442b8b48afe2c47a166d2b (patch) | |
tree | fa416d42bd48e40716ee2358cd84716cd49cbdb3 /modules/system | |
parent | 8cd661b82b253e1016a5c9db7f898ca62ac27fcb (diff) | |
download | brdo-e0fe1ae8eb5dd4e5d5442b8b48afe2c47a166d2b.tar.gz brdo-e0fe1ae8eb5dd4e5d5442b8b48afe2c47a166d2b.tar.bz2 |
- Patch #151583 by pwolanin, Shakur, webernet, Arancaytar et al: various menu module fixes.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.install | 1 | ||||
-rw-r--r-- | modules/system/system.schema | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 7aa12ff8b..525d66ceb 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -3339,6 +3339,7 @@ function system_update_6020() { 'expanded' => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'small'), 'weight' => array('type' => 'int', 'not null' => TRUE, 'default' => 0), 'depth' => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'small'), + 'customized' => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'small'), 'p1' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'p2' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'p3' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), diff --git a/modules/system/system.schema b/modules/system/system.schema index a1ea98b8c..544b4f1b2 100644 --- a/modules/system/system.schema +++ b/modules/system/system.schema @@ -110,6 +110,7 @@ function system_schema() { 'expanded' => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'small'), 'weight' => array('type' => 'int', 'not null' => TRUE, 'default' => 0), 'depth' => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'small'), + 'customized' => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'small'), 'p1' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'p2' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'p3' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), |