mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-03 13:30:39 +08:00
fix(currency): add RON and TRY currencies (#1455)
Co-authored-by: Narayan Bhat <48803246+Narayanbhat166@users.noreply.github.com>
This commit is contained in:
@ -230,6 +230,7 @@ pub enum Currency {
|
|||||||
PKR,
|
PKR,
|
||||||
PLN,
|
PLN,
|
||||||
QAR,
|
QAR,
|
||||||
|
RON,
|
||||||
RUB,
|
RUB,
|
||||||
SAR,
|
SAR,
|
||||||
SCR,
|
SCR,
|
||||||
@ -241,6 +242,7 @@ pub enum Currency {
|
|||||||
SVC,
|
SVC,
|
||||||
SZL,
|
SZL,
|
||||||
THB,
|
THB,
|
||||||
|
TRY,
|
||||||
TTD,
|
TTD,
|
||||||
TWD,
|
TWD,
|
||||||
TZS,
|
TZS,
|
||||||
|
|||||||
@ -243,6 +243,7 @@ pub enum Currency {
|
|||||||
PKR,
|
PKR,
|
||||||
PLN,
|
PLN,
|
||||||
QAR,
|
QAR,
|
||||||
|
RON,
|
||||||
RUB,
|
RUB,
|
||||||
SAR,
|
SAR,
|
||||||
SCR,
|
SCR,
|
||||||
@ -254,6 +255,7 @@ pub enum Currency {
|
|||||||
SVC,
|
SVC,
|
||||||
SZL,
|
SZL,
|
||||||
THB,
|
THB,
|
||||||
|
TRY,
|
||||||
TTD,
|
TTD,
|
||||||
TWD,
|
TWD,
|
||||||
TZS,
|
TZS,
|
||||||
|
|||||||
@ -0,0 +1 @@
|
|||||||
|
SELECT 1;
|
||||||
@ -0,0 +1,3 @@
|
|||||||
|
-- Your SQL goes here
|
||||||
|
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'RON' AFTER 'QAR';
|
||||||
|
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'TRY' AFTER 'TTD';
|
||||||
Reference in New Issue
Block a user