triapl_views_search.install 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. function tripal_views_search_schema(){
  3. $schema['tripal_views_search'] = array(
  4. 'description' => 'contains the searches, their materialized view id and base table name that was used.',
  5. 'fields' => array(
  6. 'tripal_search_id' => array(
  7. 'description' => 'the id of the search',
  8. 'type' => 'serial',
  9. 'unsigned' => TRUE,
  10. 'not null' => TRUE,
  11. ),
  12. 'mview_id' => array(
  13. 'description' => 'the materialized view used for this search',
  14. 'type' => 'int',
  15. 'unsigned' => TRUE,
  16. 'not null' => FALSE,
  17. 'default' => NULL,
  18. ),
  19. 'base_table_name' => array(
  20. 'description' => 'the base table name to be used when using this search',
  21. 'type' => 'varchar',
  22. 'length' => 255,
  23. 'unsigned' => TRUE,
  24. 'not null' => FALSE,
  25. 'default' => NULL,
  26. ),
  27. ),
  28. 'uique_keys' => array(
  29. 'tripal_search_id' => array('tripal_search_id'),
  30. ),
  31. );
  32. // $schema['tripal_mviews_join'] = array();
  33. // $schema['tripal_views_handlers'] = array();
  34. return $schema;
  35. }
  36. function tripal_views_search_install(){
  37. drupal_install_schema('tripal_views_search');
  38. }
  39. function tripal_views_serach_uninstall(){
  40. drupal_uninstall_schema('tripal_views_search');
  41. }
  42. /*
  43. * NOTE: when updating schema for this module's tables
  44. * follow api of schema module, otherwise on uninstall
  45. * the tables will not be removed correctly
  46. *
  47. */