mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-27 19:46:48 +08:00
feat: ACH transfers (#905)
This commit is contained in:
committed by
GitHub
parent
39405bb478
commit
23bca66b81
@ -0,0 +1,3 @@
|
||||
-- This file should undo anything in `up.sql`
|
||||
DROP INDEX preprocessing_step_id_index;
|
||||
ALTER TABLE payment_attempt DROP COLUMN preprocessing_step_id;
|
||||
@ -0,0 +1,3 @@
|
||||
-- Your SQL goes here
|
||||
ALTER TABLE payment_attempt ADD COLUMN preprocessing_step_id VARCHAR DEFAULT NULL;
|
||||
CREATE INDEX preprocessing_step_id_index ON payment_attempt (preprocessing_step_id);
|
||||
Reference in New Issue
Block a user