mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 00:49:42 +08:00
feat: add support for ANG currency (#681)
This commit is contained in:
@ -144,6 +144,7 @@ pub enum Currency {
|
||||
AED,
|
||||
ALL,
|
||||
AMD,
|
||||
ANG,
|
||||
ARS,
|
||||
AUD,
|
||||
AWG,
|
||||
|
||||
@ -152,6 +152,7 @@ pub enum Currency {
|
||||
AED,
|
||||
ALL,
|
||||
AMD,
|
||||
ANG,
|
||||
ARS,
|
||||
AUD,
|
||||
AWG,
|
||||
|
||||
1
migrations/2023-02-28-072631_ang-currency/down.sql
Normal file
1
migrations/2023-02-28-072631_ang-currency/down.sql
Normal file
@ -0,0 +1 @@
|
||||
-- This file should undo anything in `up.sql`
|
||||
2
migrations/2023-02-28-072631_ang-currency/up.sql
Normal file
2
migrations/2023-02-28-072631_ang-currency/up.sql
Normal file
@ -0,0 +1,2 @@
|
||||
-- Your SQL goes here
|
||||
ALTER TYPE "Currency" ADD VALUE 'ANG' after 'AMD';
|
||||
Reference in New Issue
Block a user