Skip to content

Commit

Permalink
intenal/relui/migrations: drop problematic workflow
Browse files Browse the repository at this point in the history
Removes unrecoverable workflow.

For golang/go#51797

Change-Id: I0dbd7e61e3d1fb3ac3708a76aad39c753ddb5531
Reviewed-on: https://go-review.googlesource.com/c/build/+/411060
TryBot-Result: Gopher Robot <[email protected]>
Run-TryBot: Alex Rakoczy <[email protected]>
Reviewed-by: Heschi Kreinick <[email protected]>
Reviewed-by: Dmitri Shuralyov <[email protected]>
  • Loading branch information
toothrot committed Jun 9, 2022
1 parent 328c9be commit c39906c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Copyright 2021 The Go Authors. All rights reserved.
-- Use of this source code is governed by a BSD-style
-- license that can be found in the LICENSE file.

-- non-reversible migration
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
-- Copyright 2021 The Go Authors. All rights reserved.
-- Use of this source code is governed by a BSD-style
-- license that can be found in the LICENSE file.

BEGIN;

DELETE
FROM task_logs
WHERE workflow_id = 'e7cb64ec-91b1-47fa-b962-2b2f034c458c';

DELETE
FROM tasks
WHERE workflow_id = 'e7cb64ec-91b1-47fa-b962-2b2f034c458c';

DELETE
FROM workflows
WHERE id = 'e7cb64ec-91b1-47fa-b962-2b2f034c458c';

COMMIT;

0 comments on commit c39906c

Please sign in to comment.