123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- function tripal_core_chado_schema_v1_11_analysisfeatureprop() {
- $description = array(
- 'table' => 'analysisfeatureprop',
- 'fields' => array(
- 'analysisfeatureprop_id' => array(
- 'type' => 'serial',
- 'not NULL' => '1',
- ),
- 'analysisfeature_id' => array(
- 'type' => 'int',
- 'not NULL' => '1',
- ),
- 'type_id' => array(
- 'type' => 'int',
- 'not NULL' => '1',
- ),
- 'value' => array(
- 'type' => 'text',
- 'not NULL' => '',
- ),
- 'rank' => array(
- 'type' => 'int',
- 'not NULL' => '1',
- ),
- ),
- 'primary key' => array(
- 0 => 'analysisfeatureprop_id',
- ),
- 'unique keys' => array(
- 'analysisfeature_id_type_id_rank' => array(
- 0 => 'analysisfeature_id',
- 1 => 'type_id',
- 2 => 'rank',
- ),
- ),
- 'indexes' => array(
- ),
- 'foreign keys' => array(
- 'cvterm' => array(
- 'table' => 'cvterm',
- 'columns' => array(
- 'type_id' => 'cvterm_id',
- ),
- ),
- 'analysisfeature' => array(
- 'table' => 'analysisfeature',
- 'columns' => array(
- 'analysisfeature_id' => 'analysisfeature_id',
- ),
- ),
- ),
- );
- return $description;
- }
|