fix(currency): add RON and TRY currencies (#1455)

Co-authored-by: Narayan Bhat <48803246+Narayanbhat166@users.noreply.github.com>
This commit is contained in:
Kartikeya Hegde
2023-06-16 22:31:32 +05:30
committed by GitHub
parent d8adf4c2b5
commit 495a98f045
4 changed files with 8 additions and 0 deletions

View File

@ -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,

View File

@ -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,

View File

@ -0,0 +1 @@
SELECT 1;

View File

@ -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';