12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
-
-
- function tripal_stock_chado_contact_schema() {
- $description = array();
- $description['foreign keys']['cvterm'] = array(
- 'table' => 'cvterm',
- 'columns' => array(
- 'type_id' => 'cvterm_id',
- ),
- );
- return $description;
- }
-
- function tripal_stock_chado_contact_relationship_schema() {
- $description = array();
- $description['foreign keys']['cvterm'] = array(
- 'table' => 'cvterm',
- 'columns' => array(
- 'type_id' => 'cvterm_id',
- ),
- );
- $description['foreign keys']['contact'] = array(
- 'table' => 'contact',
- 'columns' => array(
- 'subject_id' => 'contact_id',
- 'object_id' => 'contact_id',
- ),
- );
-
- return $description;
- }
|