diff options
Diffstat (limited to 'includes/update.inc')
-rw-r--r-- | includes/update.inc | 3 |
1 files changed, 3 insertions, 0 deletions
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( |