From aa8bd675d2c4d406da47247e1ec4b008578a9c4b Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Sat, 24 Oct 2009 02:22:53 +0000 Subject: #599804 by catch: Fix upgrade path. --- includes/update.inc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'includes') diff --git a/includes/update.inc b/includes/update.inc index 283cc4bf1..a04c4e627 100644 --- a/includes/update.inc +++ b/includes/update.inc @@ -132,6 +132,9 @@ function update_fix_d7_requirements() { db_add_field('url_alias', 'source', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '')); db_add_field('url_alias', 'alias', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '')); + // Add the deliver_callback column to {menu_router}. + db_add_field('menu_router', 'delivery_callback', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '')); + // Add the role_permisson table. $schema['role_permission'] = array( 'fields' => array( -- cgit v1.2.3