mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-01 11:06:50 +08:00
feat: add support for ANG currency (#681)
This commit is contained in:
@ -144,6 +144,7 @@ pub enum Currency {
|
|||||||
AED,
|
AED,
|
||||||
ALL,
|
ALL,
|
||||||
AMD,
|
AMD,
|
||||||
|
ANG,
|
||||||
ARS,
|
ARS,
|
||||||
AUD,
|
AUD,
|
||||||
AWG,
|
AWG,
|
||||||
|
|||||||
@ -152,6 +152,7 @@ pub enum Currency {
|
|||||||
AED,
|
AED,
|
||||||
ALL,
|
ALL,
|
||||||
AMD,
|
AMD,
|
||||||
|
ANG,
|
||||||
ARS,
|
ARS,
|
||||||
AUD,
|
AUD,
|
||||||
AWG,
|
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