diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-24 02:22:53 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-24 02:22:53 +0000 |
commit | aa8bd675d2c4d406da47247e1ec4b008578a9c4b (patch) | |
tree | b438b9a484e7caa4cfd486f0d5bfca6d7dc134b6 /includes | |
parent | ae70677b3d4100fd585e11f677cf27e79610ae43 (diff) | |
download | brdo-aa8bd675d2c4d406da47247e1ec4b008578a9c4b.tar.gz brdo-aa8bd675d2c4d406da47247e1ec4b008578a9c4b.tar.bz2 |
#599804 by catch: Fix upgrade path.
Diffstat (limited to 'includes')
-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( |