#894898 by mrfelton: Fixed Increase permission length restriction from 64 to 128.
parent
cf4df86b94
commit
1e985830e2
|
@ -423,7 +423,7 @@ function update_fix_d7_requirements() {
|
|||
),
|
||||
'permission' => array(
|
||||
'type' => 'varchar',
|
||||
'length' => 64,
|
||||
'length' => 128,
|
||||
'not null' => TRUE,
|
||||
'default' => '',
|
||||
),
|
||||
|
|
|
@ -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.',
|
||||
|
|
Loading…
Reference in New Issue