Skip to content
Merged
Show file tree
Hide file tree
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
Next Next commit
add missing migration file
  • Loading branch information
defelmnq committed Mar 3, 2025
commit 10276a5ed73e0715d6f9aaccff56a073b0e7ef4b
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- The migration is about an enum value change
-- As we can not remove a value from an enum, we can let the down migration empty
-- In order to avoid any failure, we use ADD VALUE IF NOT EXISTS to add the value
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TYPE notification_method ADD VALUE IF NOT EXISTS 'inbox';
Loading