diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-07-15 10:09:21 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-07-15 10:09:21 +0000 |
commit | 08c059ec77225a299e7e130b4692c583dc2bbe21 (patch) | |
tree | 3caa2f4761156e60c77bcf4df19cd5495db3cbac /modules/system/system.schema | |
parent | a771c6c45a569524a17d909818eabd7f24ec787c (diff) | |
download | brdo-08c059ec77225a299e7e130b4692c583dc2bbe21.tar.gz brdo-08c059ec77225a299e7e130b4692c583dc2bbe21.tar.bz2 |
- Rollback of patch #147947: lacks proper upgrade path.
Diffstat (limited to 'modules/system/system.schema')
-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 544b4f1b2..bc1428bb7 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' => 'medium') + 'batch' => array('type' => 'text', 'not null' => FALSE, 'size' => 'big') ), 'primary key' => array('bid'), 'indexes' => array('token' => array('token')), @@ -146,7 +146,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' => 'medium') + 'session' => array('type' => 'text', 'not null' => FALSE, 'size' => 'big') ), 'primary key' => array('sid'), 'indexes' => array( @@ -187,7 +187,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' => 'medium'), + 'value' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big'), ), 'primary key' => array('name'), ); |