summaryrefslogtreecommitdiff
path: root/modules/system/system.schema
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-07-15 10:09:21 +0000
committerDries Buytaert <dries@buytaert.net>2007-07-15 10:09:21 +0000
commit08c059ec77225a299e7e130b4692c583dc2bbe21 (patch)
tree3caa2f4761156e60c77bcf4df19cd5495db3cbac /modules/system/system.schema
parenta771c6c45a569524a17d909818eabd7f24ec787c (diff)
downloadbrdo-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.schema6
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'),
);