diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-08-27 10:42:48 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-08-27 10:42:48 +0000 |
commit | 1e985830e217d5291174e7da403e76b54cbab1f3 (patch) | |
tree | 4e2497b56d2c158503cbec9ffeae9eb87acdbf66 /modules/user/user.install | |
parent | cf4df86b94ff26529ab1bdd29cb7f3a9290af397 (diff) | |
download | brdo-1e985830e217d5291174e7da403e76b54cbab1f3.tar.gz brdo-1e985830e217d5291174e7da403e76b54cbab1f3.tar.bz2 |
#894898 by mrfelton: Fixed Increase permission length restriction from 64 to 128.
Diffstat (limited to 'modules/user/user.install')
-rw-r--r-- | modules/user/user.install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.install b/modules/user/user.install index 5c8791f85..a246379ee 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.', |