diff -urpN drupal-6.x-dev-200705302348/modules/aggregator/aggregator.schema drupal-6.x-dev/modules/aggregator/aggregator.schema --- drupal-6.x-dev-200705302348/modules/aggregator/aggregator.schema 2007-05-25 20:46:43.000000000 +0800 +++ drupal-6.x-dev/modules/aggregator/aggregator.schema 2007-05-31 01:51:42.000000000 +0800 @@ -38,7 +38,7 @@ function aggregator_schema() { 'checked' => array('type' => 'int', 'not null' => TRUE, 'default' => 0), 'link' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''), 'description' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big'), - 'image' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big'), + 'image' => array('type' => 'text', 'not null' => TRUE, 'size' => 'medium'), 'etag' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''), 'modified' => array('type' => 'int', 'not null' => TRUE, 'default' => 0), 'block' => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny') diff -urpN drupal-6.x-dev-200705302348/modules/comment/comment.schema drupal-6.x-dev/modules/comment/comment.schema --- drupal-6.x-dev-200705302348/modules/comment/comment.schema 2007-05-25 20:46:44.000000000 +0800 +++ drupal-6.x-dev/modules/comment/comment.schema 2007-05-31 01:54:23.000000000 +0800 @@ -16,7 +16,7 @@ function comment_schema() { 'status' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, 'size' => 'tiny'), 'format' => array('type' => 'int', 'size' => 'small', 'not null' => TRUE, 'default' => 0), 'thread' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE), - 'users' => array('type' => 'text', 'not null' => FALSE, 'size' => 'big'), + 'users' => array('type' => 'text', 'not null' => FALSE, 'size' => 'medium'), 'name' => array('type' => 'varchar', 'length' => 60, 'not null' => FALSE), 'mail' => array('type' => 'varchar', 'length' => 64, 'not null' => FALSE), 'homepage' => array('type' => 'varchar', 'length' => 255, 'not null' => FALSE) diff -urpN drupal-6.x-dev-200705302348/modules/contact/contact.schema drupal-6.x-dev/modules/contact/contact.schema --- drupal-6.x-dev-200705302348/modules/contact/contact.schema 2007-05-25 20:46:44.000000000 +0800 +++ drupal-6.x-dev/modules/contact/contact.schema 2007-05-31 01:50:13.000000000 +0800 @@ -6,7 +6,7 @@ function contact_schema() { 'fields' => array( 'cid' => array('type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE), 'category' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''), - 'recipients' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big'), + 'recipients' => array('type' => 'text', 'not null' => TRUE, 'size' => 'medium'), 'reply' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big'), 'weight' => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny'), 'selected' => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny') diff -urpN drupal-6.x-dev-200705302348/modules/search/search.schema drupal-6.x-dev/modules/search/search.schema --- drupal-6.x-dev-200705302348/modules/search/search.schema 2007-05-25 20:46:45.000000000 +0800 +++ drupal-6.x-dev/modules/search/search.schema 2007-05-31 02:02:38.000000000 +0800 @@ -6,7 +6,7 @@ function search_schema() { 'fields' => array( 'sid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'type' => array('type' => 'varchar', 'length' => 16, 'not null' => FALSE), - 'data' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big') + 'data' => array('type' => 'text', 'not null' => TRUE, 'size' => 'medium') ), 'indexes' => array('sid_type' => array('sid', 'type')), ); diff -urpN drupal-6.x-dev-200705302348/modules/system/system.schema drupal-6.x-dev/modules/system/system.schema --- drupal-6.x-dev-200705302348/modules/system/system.schema 2007-05-30 16:08:59.000000000 +0800 +++ drupal-6.x-dev/modules/system/system.schema 2007-05-31 02:06:58.000000000 +0800 @@ -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'), ); diff -urpN drupal-6.x-dev-200705302348/modules/user/user.schema drupal-6.x-dev/modules/user/user.schema --- drupal-6.x-dev-200705302348/modules/user/user.schema 2007-05-25 20:46:46.000000000 +0800 +++ drupal-6.x-dev/modules/user/user.schema 2007-05-31 01:58:21.000000000 +0800 @@ -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'),