Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ensembl-gh-mirror
ensembl-hive
Commits
66357b20
Commit
66357b20
authored
Jul 06, 2004
by
Abel Ureta-Vidal
Browse files
fixed syntax that MySQL 4.0.20 does not like anymore
parent
5e42f5ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
sql/tables.sql
sql/tables.sql
+3
-3
No files found.
sql/tables.sql
View file @
66357b20
...
...
@@ -22,7 +22,7 @@ CREATE TABLE hive (
last_check_in
datetime
NOT
NULL
,
died
datetime
DEFAULT
NULL
,
cause_of_death
enum
(
''
,
'NO_WORK'
,
'JOB_LIMIT'
,
'LIFESPAN'
,
'FATALITY'
)
DEFAULT
''
NOT
NULL
,
PRIMARY
KEY
(
hive_id
)
,
PRIMARY
KEY
(
hive_id
)
);
...
...
@@ -49,7 +49,7 @@ CREATE TABLE hive (
-- branch_code - joined to analysis_job.branch_code to allow branching
CREATE
TABLE
simple_rule
(
simple_rule_id
int
(
10
)
unsigned
default
'0'
not
null
auto_increment
,
simple_rule_id
int
(
10
)
unsigned
not
null
auto_increment
,
condition_analysis_id
int
(
10
)
unsigned
NOT
NULL
,
goal_analysis_id
int
(
10
)
unsigned
NOT
NULL
,
branch_code
int
(
10
)
default
1
NOT
NULL
,
...
...
@@ -86,7 +86,7 @@ CREATE TABLE simple_rule (
-- branch_code - joined to analysis_job.branch_code to allow branching
CREATE
TABLE
dataflow_rule
(
dataflow_rule_id
int
(
10
)
unsigned
default
'0'
not
null
auto_increment
,
dataflow_rule_id
int
(
10
)
unsigned
not
null
auto_increment
,
from_analysis_id
int
(
10
)
unsigned
NOT
NULL
,
to_analysis_url
varchar
(
255
)
default
''
NOT
NULL
,
branch_code
int
(
10
)
default
1
NOT
NULL
,
...
...
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