diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-24 01:46:13 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-24 01:46:13 +0000 |
commit | ae70677b3d4100fd585e11f677cf27e79610ae43 (patch) | |
tree | 6e5b1dbd8ce841b317a1c8ae4b2411bdc4b3ff4e /modules | |
parent | 63ac367e4f2a7e5ca0c46a740033841806543cc9 (diff) | |
download | brdo-ae70677b3d4100fd585e11f677cf27e79610ae43.tar.gz brdo-ae70677b3d4100fd585e11f677cf27e79610ae43.tar.bz2 |
#524710 by catch and gordon: Add role_permission() table earlier in order to allow upgrade path to work.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.install | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 663d67b76..9fbc8ffee 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -1992,28 +1992,6 @@ function system_update_7006() { * all modules can use the updated permission scheme during their updates. */ function system_update_7007() { - $schema['role_permission'] = array( - 'fields' => array( - 'rid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'permission' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - ), - 'primary key' => array('rid', 'permission'), - 'indexes' => array( - 'permission' => array('permission'), - ), - ); - - db_create_table('role_permission', $schema['role_permission']); - // Copy the permissions from the old {permission} table to the new {role_permission} table. $messages = array(); $result = db_query("SELECT rid, perm FROM {permission} ORDER BY rid ASC"); |