Skip to content
Snippets Groups Projects
Commit cfc5e443 authored by Andy Yates's avatar Andy Yates
Browse files

attribute_type table does not exist. attrib_type does

parent d4b48798
No related branches found
No related tags found
No related merge requests found
...@@ -377,7 +377,7 @@ CREATE TABLE gene ( ...@@ -377,7 +377,7 @@ CREATE TABLE gene (
@desc Enables storage of attributes that relate to genes. @desc Enables storage of attributes that relate to genes.
@column gene_id Foreign key references to the @link gene table. @column gene_id Foreign key references to the @link gene table.
@column attrib_type_id Foreign key references to the @link attribute_type table. @column attrib_type_id Foreign key references to the @link attrib_type table.
@column value Attribute value. @column value Attribute value.
...@@ -640,7 +640,7 @@ CREATE TABLE seq_region ( ...@@ -640,7 +640,7 @@ CREATE TABLE seq_region (
@desc Allows "attributes" to be defined for certain seq_regions. Provides a way of storing extra information about particular seq_regions without adding extra columns to the seq_region table. e.g. @desc Allows "attributes" to be defined for certain seq_regions. Provides a way of storing extra information about particular seq_regions without adding extra columns to the seq_region table. e.g.
@column seq_region_id Foreign key references to the @link seq_region table. @column seq_region_id Foreign key references to the @link seq_region table.
@column attrib_type_id Foreign key references to the @link attribute_type table. @column attrib_type_id Foreign key references to the @link attrib_type table.
@column value Attribute value. @column value Attribute value.
@see seq_region @see seq_region
...@@ -727,7 +727,7 @@ CREATE TABLE transcript ( ...@@ -727,7 +727,7 @@ CREATE TABLE transcript (
@desc Enables storage of attributes that relate to transcripts. @desc Enables storage of attributes that relate to transcripts.
@column transcript_id Foreign key references to the @link transcript table. @column transcript_id Foreign key references to the @link transcript table.
@column attrib_type_id Foreign key references to the @link attribute_type table. @column attrib_type_id Foreign key references to the @link attrib_type table.
@column value Attribute value. @column value Attribute value.
...@@ -791,7 +791,7 @@ CREATE TABLE translation ( ...@@ -791,7 +791,7 @@ CREATE TABLE translation (
@desc Enables storage of attributes that relate to translations. @desc Enables storage of attributes that relate to translations.
@column translation_id Foreign key references to the @link transcript table. @column translation_id Foreign key references to the @link transcript table.
@column attrib_type_id Foreign key references to the @link attribute_type table. @column attrib_type_id Foreign key references to the @link attrib_type table.
@column value Attribute value. @column value Attribute value.
@see translation @see translation
...@@ -1305,7 +1305,7 @@ CREATE TABLE marker_synonym ( ...@@ -1305,7 +1305,7 @@ CREATE TABLE marker_synonym (
@desc Stores arbitrary attributes about the features in the misc_feature table. @desc Stores arbitrary attributes about the features in the misc_feature table.
@column misc_feature_id Foreign key references to the @link misc_feature table. @column misc_feature_id Foreign key references to the @link misc_feature table.
@column attrib_type_id Foreign key references to the @link attribute_type table. @column attrib_type_id Foreign key references to the @link attrib_type table.
@column value Attribute value. @column value Attribute value.
@see misc_feature @see misc_feature
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment