'Stores testing data for Mollom test form.', 'fields' => array( 'mid' => array('type' => 'serial', 'not null' => TRUE, 'description' => 'Primary key: Unique mollom_test entity ID.', ), 'body' => array('type' => 'text', 'not null' => TRUE, 'description' => 'The body field of mollom_test_form().', ), ), 'primary key' => array('mid'), ); return $schema; } /** * Implements hook_install(). */ function mollom_test_install() { drupal_install_schema('mollom_test'); } /** * Implements hook_uninstall(). */ function mollom_test_uninstall() { drupal_uninstall_schema('mollom_test'); }