summaryrefslogtreecommitdiff
path: root/modules/user/user.schema
diff options
context:
space:
mode:
Diffstat (limited to 'modules/user/user.schema')
-rw-r--r--modules/user/user.schema4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/user/user.schema b/modules/user/user.schema
index 032778f10..5e18ffa16 100644
--- a/modules/user/user.schema
+++ b/modules/user/user.schema
@@ -27,7 +27,7 @@ function user_schema() {
'fields' => array(
'pid' => array('type' => 'serial', 'not null' => TRUE),
'rid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0),
- 'perm' => array('type' => 'text', 'not null' => FALSE, 'size' => 'big'),
+ 'perm' => array('type' => 'text', 'not null' => FALSE, 'size' => 'medium'),
'tid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0)
),
'primary key' => array('pid'),
@@ -62,7 +62,7 @@ function user_schema() {
'language' => array('type' => 'varchar', 'length' => 12, 'not null' => TRUE, 'default' => ''),
'picture' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''),
'init' => array('type' => 'varchar', 'length' => 64, 'not null' => FALSE, 'default' => ''),
- 'data' => array('type' => 'text', 'not null' => FALSE, 'size' => 'big')
+ 'data' => array('type' => 'text', 'not null' => FALSE, 'size' => 'medium')
),
'indexes' => array(
'access' => array('access'),