12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /**
- * @file
- * Install, update and uninstall functions for the Search API test module.
- */
- /**
- * Implements hook_schema().
- */
- function search_api_test_schema() {
- $schema['search_api_test'] = array(
- 'description' => 'Stores instances of a test entity.',
- 'fields' => array(
- 'id' => array(
- 'description' => 'The primary identifier for an item.',
- 'type' => 'serial',
- 'unsigned' => TRUE,
- 'not null' => TRUE,
- ),
- 'title' => array(
- 'description' => 'The title of the item.',
- 'type' => 'varchar',
- 'length' => 50,
- 'not null' => TRUE,
- ),
- 'body' => array(
- 'description' => 'A text belonging to the item.',
- 'type' => 'text',
- 'not null' => FALSE,
- ),
- 'type' => array(
- 'description' => 'A string identifying the type of item.',
- 'type' => 'varchar',
- 'length' => 50,
- 'not null' => TRUE,
- ),
- ),
- 'primary key' => array('id'),
- );
- return $schema;
- }
|