Skip to content

Commit

Permalink
Merge branch 'main' into periodic-vice-notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
ianmcorvidae committed Jun 28, 2024
2 parents 65146f6 + 1429984 commit fb69645
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions migrations/000037_job_types_tapis.down.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
BEGIN;

SET search_path = public, pg_catalog;

--
-- Delete the Tapis job type.
--
DELETE FROM job_types WHERE system_id = 'tapis';

COMMIT;
10 changes: 10 additions & 0 deletions migrations/000037_job_types_tapis.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
BEGIN;

SET search_path = public, pg_catalog;

--
-- Add the Tapis job type.
--
INSERT INTO job_types (name, system_id) VALUES ('Tapis', 'tapis');

COMMIT;

0 comments on commit fb69645

Please sign in to comment.