123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?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;
- }
|