Add adyen_sessions.authorisation_webhook_timestamp and make adyen_session_id unique (#403)

This commit is contained in:
Fredrik Ringqvist
2024-06-10 12:50:09 +02:00
committed by GitHub
parent 7e8525d018
commit 70ee2ada50
+5
View File
@@ -0,0 +1,5 @@
-- Add column to register when authorisation webhook was received
ALTER TABLE adyen_sessions ADD COLUMN IF NOT EXISTS authorisation_webhook_timestamp TIMESTAMP WITH TIME ZONE;
-- Make adyen_session_id unique
CREATE UNIQUE INDEX ON adyen_sessions(adyen_session_id);