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/system | |
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/system')
-rw-r--r-- | modules/system/system.schema | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/system/system.schema b/modules/system/system.schema index a3f384b3c..a1ea98b8c 100644 --- a/modules/system/system.schema +++ b/modules/system/system.schema @@ -7,7 +7,7 @@ function system_schema() { 'bid' => array('type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE), 'token' => array('type' => 'varchar', 'length' => 64, 'not null' => TRUE), 'timestamp' => array('type' => 'int', 'not null' => TRUE), - 'batch' => array('type' => 'text', 'not null' => FALSE, 'size' => 'big') + 'batch' => array('type' => 'text', 'not null' => FALSE, 'size' => 'medium') ), 'primary key' => array('bid'), 'indexes' => array('token' => array('token')), @@ -145,7 +145,7 @@ function system_schema() { 'hostname' => array('type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => ''), 'timestamp' => array('type' => 'int', 'not null' => TRUE, 'default' => 0), 'cache' => array('type' => 'int', 'not null' => TRUE, 'default' => 0), - 'session' => array('type' => 'text', 'not null' => FALSE, 'size' => 'big') + 'session' => array('type' => 'text', 'not null' => FALSE, 'size' => 'medium') ), 'primary key' => array('sid'), 'indexes' => array( @@ -186,7 +186,7 @@ function system_schema() { $schema['variable'] = array( 'fields' => array( 'name' => array('type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => ''), - 'value' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big'), + 'value' => array('type' => 'text', 'not null' => TRUE, 'size' => 'medium'), ), 'primary key' => array('name'), ); |