diff --git a/backend/migrations/20240225193945_set_last_ping_null.down.sql b/backend/migrations/20240225193945_set_last_ping_null.down.sql new file mode 100644 index 0000000000..d2f607c5b8 --- /dev/null +++ b/backend/migrations/20240225193945_set_last_ping_null.down.sql @@ -0,0 +1 @@ +-- Add down migration script here diff --git a/backend/migrations/20240225193945_set_last_ping_null.up.sql b/backend/migrations/20240225193945_set_last_ping_null.up.sql new file mode 100644 index 0000000000..7bf55a0b8d --- /dev/null +++ b/backend/migrations/20240225193945_set_last_ping_null.up.sql @@ -0,0 +1,2 @@ +-- Add up migration script here +UPDATE queue SET last_ping = NULL WHERE job_kind = 'flow' OR job_kind = 'flowpreview'; \ No newline at end of file