Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
add timestamptz
  • Loading branch information
deansheather committed Aug 7, 2025
commit cd70fd1772a1abafc08f65d71f5fa199cfbf1f27
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ UPDATE
SET
deadline = max_deadline
WHERE
(deadline = '0001-01-01 00:00:00+00' OR deadline > max_deadline)
AND max_deadline != '0001-01-01 00:00:00+00';
(deadline = '0001-01-01 00:00:00+00'::timestamptz OR deadline > max_deadline)
AND max_deadline != '0001-01-01 00:00:00+00'::timestamptz;

-- Add the new constraint.
ALTER TABLE workspace_builds
Expand Down
Loading