diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-06-15 07:15:25 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-06-15 07:15:25 +0000 |
commit | ae0392b2eb956263c35fb04b695f4974dcca2787 (patch) | |
tree | feaee181acca6a6ad7b93e119e5348cc499314e9 /modules/user/user.schema | |
parent | 0d5e968823f3f0932e02cc637971c504ad872e8f (diff) | |
download | brdo-ae0392b2eb956263c35fb04b695f4974dcca2787.tar.gz brdo-ae0392b2eb956263c35fb04b695f4974dcca2787.tar.bz2 |
- Patch #147947 by hswong3i: some files shouldn't defined as text:big for Oracle compatibility.
Diffstat (limited to 'modules/user/user.schema')
-rw-r--r-- | modules/user/user.schema | 4 |
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'), |