mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-01 19:42:27 +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,
|
||||
PLN,
|
||||
QAR,
|
||||
RON,
|
||||
RUB,
|
||||
SAR,
|
||||
SCR,
|
||||
@ -241,6 +242,7 @@ pub enum Currency {
|
||||
SVC,
|
||||
SZL,
|
||||
THB,
|
||||
TRY,
|
||||
TTD,
|
||||
TWD,
|
||||
TZS,
|
||||
|
||||
@ -243,6 +243,7 @@ pub enum Currency {
|
||||
PKR,
|
||||
PLN,
|
||||
QAR,
|
||||
RON,
|
||||
RUB,
|
||||
SAR,
|
||||
SCR,
|
||||
@ -254,6 +255,7 @@ pub enum Currency {
|
||||
SVC,
|
||||
SZL,
|
||||
THB,
|
||||
TRY,
|
||||
TTD,
|
||||
TWD,
|
||||
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