Skip to content

Commit

Permalink
SCRUM-4667 more FW script renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
cmpich committed Feb 7, 2025
1 parent eb7c365 commit 887d0cd
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 32 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,2 +1,30 @@
CREATE INDEX agmagmassociation_agmassocobject_in ON public.agmagmassociation USING btree (agmAgmAssociationObject_id);
ALTER TABLE ONLY public.agmagmassociation ADD CONSTRAINT agmagmassociation_agmassociationobject_fk FOREIGN KEY (agmAgmAssociationObject_id) REFERENCES public.affectedgenomicmodel(id);
ALTER TABLE agmagmassociation
add column
agmAgmAssociationObject_id bigint
;

alter table agmagmassociation
DROP agmassociationobject_id
;

delete
from bulkscheduledload
where id in (SELECT id
FROM bulkload
WHERE backendbulkloadtype = 'AGM_AGM_ASSOCIATION');

delete
from bulkmanualload
where id in (SELECT id
FROM bulkload
WHERE backendbulkloadtype = 'AGM_AGM_ASSOCIATION');

delete
from bulkload
WHERE group_id in (select id from bulkloadgroup where name = 'Direct (LinkML) AGM AGM Association Loads');

delete
from bulkloadgroup
where name = 'Direct (LinkML) AGM AGM Association Loads';


Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CREATE INDEX agmagmassociation_agmassocobject_in ON public.agmagmassociation USING btree (agmAgmAssociationObject_id);
ALTER TABLE ONLY public.agmagmassociation ADD CONSTRAINT agmagmassociation_agmassociationobject_fk FOREIGN KEY (agmAgmAssociationObject_id) REFERENCES public.affectedgenomicmodel(id);

0 comments on commit 887d0cd

Please sign in to comment.