summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-08-27 10:42:48 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-08-27 10:42:48 +0000
commit1e985830e217d5291174e7da403e76b54cbab1f3 (patch)
tree4e2497b56d2c158503cbec9ffeae9eb87acdbf66 /modules
parentcf4df86b94ff26529ab1bdd29cb7f3a9290af397 (diff)
downloadbrdo-1e985830e217d5291174e7da403e76b54cbab1f3.tar.gz
brdo-1e985830e217d5291174e7da403e76b54cbab1f3.tar.bz2
#894898 by mrfelton: Fixed Increase permission length restriction from 64 to 128.
Diffstat (limited to 'modules')
-rw-r--r--modules/user/user.install2
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.',