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
36b47088
Commit
36b47088
authored
Mar 04, 2005
by
Jessica Severin
Browse files
patch for analysis_job_file table: added columns hive_id, retry; changed index
parent
6cd6c078
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
sql/patch_2005_03_04.sql
sql/patch_2005_03_04.sql
+3
-0
No files found.
sql/patch_2005_03_04.sql
0 → 100644
View file @
36b47088
ALTER
TABLE
analysis_job_file
ADD
COLUMN
retry
int
(
10
)
default
0
NOT
NULL
after
analysis_job_id
,
ADD
COLUMN
hive_id
int
(
10
)
default
0
NOT
NULL
after
analysis_job_id
,
drop
index
analysis_job_id
;
CREATE
UNIQUE
INDEX
job_hive_type
on
analysis_job_file
(
analysis_job_id
,
hive_id
,
type
);
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