#894898 by mrfelton: Fixed Increase permission length restriction from 64 to 128.

merge-requests/26/head
Angie Byron 2010-08-27 10:42:48 +00:00
parent cf4df86b94
commit 1e985830e2
2 changed files with 2 additions and 2 deletions

View File

@ -423,7 +423,7 @@ function update_fix_d7_requirements() {
),
'permission' => array(
'type' => 'varchar',
'length' => 64,
'length' => 128,
'not null' => TRUE,
'default' => '',
),

View File

@ -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.',