From b3c47245df2f0611814ee04badaa3b995c6fe590 Mon Sep 17 00:00:00 2001 From: "Frederic G. MARAND" Date: Sat, 28 Sep 2013 15:57:12 +0200 Subject: [PATCH] Issue #2100189 by fgm: removed obsolete foreign key from users_roles to role. --- core/modules/user/user.install | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/core/modules/user/user.install b/core/modules/user/user.install index aabbce9..7620ee5 100644 --- a/core/modules/user/user.install +++ b/core/modules/user/user.install @@ -210,7 +210,7 @@ function user_schema() { 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, - 'description' => 'Primary Key: {role}.rid for role.', + 'description' => 'Primary Key: ID for the role.', ), ), 'primary key' => array('uid', 'rid'), @@ -222,10 +222,6 @@ function user_schema() { 'table' => 'users', 'columns' => array('uid' => 'uid'), ), - 'role' => array( - 'table' => 'role', - 'columns' => array('rid' => 'rid'), - ), ), ); -- 1.7.9.5