tripal_cv.schema.api.inc 545 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Implements hook_chado_schema_v1_2_tripal_obo_temp()
  4. * Purpose: To describe the structure of 'tripal_obo_temp' to tripal
  5. * @see tripal_core_chado_insert()
  6. * @see tripal_core_chado_update()
  7. * @see tripal_core_chado_select()
  8. *
  9. * @return
  10. * An array describing the 'tripal_obo_temp' table
  11. *
  12. * @ingroup tripal_chado_v1.2_schema_api
  13. *
  14. */
  15. function tripal_cv_chado_schema_v1_2_tripal_obo_temp() {
  16. $schema = tripal_cv_get_custom_tables('tripal_obo_temp');
  17. $description = $schema['tripal_obo_temp'];
  18. return $description;
  19. }