feat: add support for ANG currency (#681)

This commit is contained in:
Nishant Joshi
2023-02-28 14:13:23 +05:30
committed by GitHub
parent 76a9b557cc
commit 03096effcf
4 changed files with 5 additions and 0 deletions

View File

@ -144,6 +144,7 @@ pub enum Currency {
AED,
ALL,
AMD,
ANG,
ARS,
AUD,
AWG,

View File

@ -152,6 +152,7 @@ pub enum Currency {
AED,
ALL,
AMD,
ANG,
ARS,
AUD,
AWG,

View File

@ -0,0 +1 @@
-- This file should undo anything in `up.sql`

View File

@ -0,0 +1,2 @@
-- Your SQL goes here
ALTER TYPE "Currency" ADD VALUE 'ANG' after 'AMD';