Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
ensembl-gh-mirror
ensembl
Commits
e7fec65c
Commit
e7fec65c
authored
Dec 18, 2002
by
Alistair Rust
Browse files
relevant_xref_id -> display_xref_id
Dropped the priority column from external_db table.
parent
551995be
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
sql/table.sql
sql/table.sql
+4
-5
No files found.
sql/table.sql
View file @
e7fec65c
...
...
@@ -319,10 +319,10 @@ CREATE TABLE gene (
type
VARCHAR
(
40
)
NOT
NULL
,
analysis_id
int
,
transcript_count
int
NOT
NULL
,
relevant
_xref_id
int
unsigned
NOT
NULL
,
display
_xref_id
int
unsigned
NOT
NULL
,
PRIMARY
KEY
(
gene_id
),
KEY
xref_id_index
(
relevant
_xref_id
)
KEY
xref_id_index
(
display
_xref_id
)
);
...
...
@@ -360,12 +360,12 @@ CREATE TABLE transcript (
gene_id
INT
UNSIGNED
NOT
NULL
,
#
foreign
key
gene
:
gene_id
translation_id
INT
UNSIGNED
NOT
NULL
,
#
foreign
key
translation
:
translation_id
exon_count
int
NOT
NULL
,
relevant
_xref_id
int
unsigned
NOT
NULL
,
display
_xref_id
int
unsigned
NOT
NULL
,
PRIMARY
KEY
(
transcript_id
),
KEY
gene_index
(
gene_id
),
KEY
translation_index
(
translation_id
),
KEY
xref_id_index
(
relevant
_xref_id
)
KEY
xref_id_index
(
display
_xref_id
)
);
...
...
@@ -566,7 +566,6 @@ CREATE TABLE external_db(
db_name
ENUM
(
'gene_name'
,
'Celera_Pep'
,
'Celera_Trans'
,
'Celera_Gene'
,
'HumanGenscans'
,
'protein_id'
,
'SCOP'
,
'HUGO'
,
'GO'
,
'SPTREMBL'
,
'EMBL'
,
'MarkerSymbol'
,
'SWISSPROT'
,
'PDB'
,
'MIM'
,
'RefSeq'
,
'LocusLink'
,
'Interpro'
,
'Superfamily'
,
'ANOSUB'
)
not
null
,
release
VARCHAR
(
40
)
DEFAULT
''
NOT
NULL
,
status
ENUM
(
'KNOWN'
,
'XREF'
,
'PRED'
)
not
null
,
priority
smallint
unsigned
not
null
,
PRIMARY
KEY
(
external_db_id
)
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment