Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions migrations/000043_job_usage_last_update.down.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
BEGIN;

SET search_path = public, pg_catalog;

ALTER TABLE IF EXISTS ONLY jobs
DROP IF EXISTS usage_last_update CASCADE;

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

SET search_path = public, pg_catalog;

ALTER TABLE IF EXISTS ONLY jobs
ADD IF NOT EXISTS usage_last_update timestamp without time zone;
Comment thread
ianmcorvidae marked this conversation as resolved.

COMMIT;