From 1e985830e217d5291174e7da403e76b54cbab1f3 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Fri, 27 Aug 2010 10:42:48 +0000 Subject: [PATCH] #894898 by mrfelton: Fixed Increase permission length restriction from 64 to 128. --- includes/update.inc | 2 +- modules/user/user.install | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/update.inc b/includes/update.inc index 698152c812b..f89fea9babb 100644 --- a/includes/update.inc +++ b/includes/update.inc @@ -423,7 +423,7 @@ function update_fix_d7_requirements() { ), 'permission' => array( 'type' => 'varchar', - 'length' => 64, + 'length' => 128, 'not null' => TRUE, 'default' => '', ), diff --git a/modules/user/user.install b/modules/user/user.install index 5c8791f8508..a246379eec0 100644 --- a/modules/user/user.install +++ b/modules/user/user.install @@ -63,7 +63,7 @@ function user_schema() { ), 'permission' => array( 'type' => 'varchar', - 'length' => 64, + 'length' => 128, 'not null' => TRUE, 'default' => '', 'description' => 'A single permission granted to the role identified by rid.',