summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-24 03:20:43 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-24 03:20:43 +0000
commit6c5e31abcbfe199a983ed6161207613d66423412 (patch)
treedcdccfa19a6c5cd4eb7407a917731650a22a6d36 /modules
parentf5b9781eeec79efa83dc6fe907b53e044aaad15f (diff)
downloadbrdo-6c5e31abcbfe199a983ed6161207613d66423412.tar.gz
brdo-6c5e31abcbfe199a983ed6161207613d66423412.tar.bz2
#613238 by catch: Fixed missing columns and tables required for upgrade.
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.install10
1 files changed, 2 insertions, 8 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index 4993b9d4b..73532e2eb 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -2701,8 +2701,7 @@ function system_update_7038() {
* page.
*/
function system_update_7039() {
- db_add_field('menu_router', 'theme_callback', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''));
- db_add_field('menu_router', 'theme_arguments', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''));
+ // Moved to update_fix_d7_requirements().
}
/**
@@ -2836,12 +2835,7 @@ function system_update_7042() {
* Add a 'context' field to {menu_router} to control contextual placement of local tasks.
*/
function system_update_7043() {
- db_add_field('menu_router', 'context', array(
- 'description' => 'Only for local tasks (tabs) - the context of a local task to control its placement.',
- 'type' => 'int',
- 'not null' => TRUE,
- 'default' => 0,
- ));
+ // Moved to update_fix_d7_requirements().
}
/**