diff options
Diffstat (limited to 'modules/search/search.schema')
-rw-r--r-- | modules/search/search.schema | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/search/search.schema b/modules/search/search.schema index a90e3c6a1..4b0e9dcb7 100644 --- a/modules/search/search.schema +++ b/modules/search/search.schema @@ -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')), ); |