upadted to 1.8

This commit is contained in:
Bachir Soussi Chiadmi
2013-09-26 15:49:26 +02:00
parent e0ae80791b
commit 128640cd15
52 changed files with 2604 additions and 1015 deletions

View File

@@ -22,7 +22,7 @@ function search_api_test_schema() {
'description' => 'The title of the item.',
'type' => 'varchar',
'length' => 50,
'not null' => TRUE,
'not null' => FALSE,
),
'body' => array(
'description' => 'A text belonging to the item.',
@@ -33,7 +33,13 @@ function search_api_test_schema() {
'description' => 'A string identifying the type of item.',
'type' => 'varchar',
'length' => 50,
'not null' => TRUE,
'not null' => FALSE,
),
'keywords' => array(
'description' => 'A comma separated list of keywords.',
'type' => 'varchar',
'length' => 200,
'not null' => FALSE,
),
),
'primary key' => array('id'),