Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
ensembl
Commits
1653f6b0
Commit
1653f6b0
authored
12 years ago
by
Dan Bolser
Browse files
Options
Downloads
Patches
Plain Diff
making the patch idiot proof (and idiotic\?)
parent
37fec26b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sql/patch_66_67_b.sql
+17
-6
17 additions, 6 deletions
sql/patch_66_67_b.sql
with
17 additions
and
6 deletions
sql/patch_66_67_b.sql
+
17
−
6
View file @
1653f6b0
...
...
@@ -6,12 +6,23 @@
#
The
stable
ID
views
,
introduced
for
release
65
as
a
way
of
providing
a
#
degree
of
backward
compatibility
,
are
dropped
with
this
release
.
DROP
VIEW
exon_stable_id
;
DROP
VIEW
gene_stable_id
;
DROP
VIEW
operon_stable_id
;
DROP
VIEW
operon_transcript_stable_id
;
DROP
VIEW
translation_stable_id
;
DROP
VIEW
transcript_stable_id
;
-- Heavens!
DROP
VIEW
IF
EXISTS
exon_stable_id
;
DROP
VIEW
IF
EXISTS
gene_stable_id
;
DROP
VIEW
IF
EXISTS
operon_stable_id
;
DROP
VIEW
IF
EXISTS
operon_transcript_stable_id
;
DROP
VIEW
IF
EXISTS
translation_stable_id
;
DROP
VIEW
IF
EXISTS
transcript_stable_id
;
DROP
TABLE
IF
EXISTS
exon_stable_id
;
DROP
TABLE
IF
EXISTS
gene_stable_id
;
DROP
TABLE
IF
EXISTS
operon_stable_id
;
DROP
TABLE
IF
EXISTS
operon_transcript_stable_id
;
DROP
TABLE
IF
EXISTS
translation_stable_id
;
DROP
TABLE
IF
EXISTS
transcript_stable_id
;
#
Patch
identifier
:
INSERT
INTO
meta
(
species_id
,
meta_key
,
meta_value
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment