You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should add the possibility of deleting preps with archived artifacts - this occurs in cases like when we have a woltka 0.1.2 artifact, we archive it (so we don't delete and we can comparet it) to a newer version, i.e. woltka 0.1.2.
Anyway, I just did this by hand and the steps were - note that it might be worth changing the order of the commands:
qiita=>DELETEFROMqiita.artifact_filepathwhere artifact_id in (select artifact_id fromqiita.preparation_artifactwhere prep_template_id = XXXX);
DELETE XX
qiita=>deletefromqiita.preparation_artifactwhere prep_template_id = XXXX;
DELETE XX
qiita=>deleteFROMqiita.study_artifactwhere artifact_id in (XXXX,XXXX,XXXX);
DELETE XX
qiita=>deleteFROMqiita.artifactwhere artifact_id in (XXXX,XXXX,XXXX);
DELETE XX
The text was updated successfully, but these errors were encountered:
We should add the possibility of deleting preps with archived artifacts - this occurs in cases like when we have a woltka 0.1.2 artifact, we archive it (so we don't delete and we can comparet it) to a newer version, i.e. woltka 0.1.2.
Anyway, I just did this by hand and the steps were - note that it might be worth changing the order of the commands:
The text was updated successfully, but these errors were encountered: