mirror of
https://github.com/google/nomulus.git
synced 2025-08-11 03:59:37 +02:00
Add a converter for CurrencyUnits stored in the database (#334)
* Add a converter for CurrencyUnits stored in the database This uses the well-known String representation for currency units. It also provides a base class for other converters that will be persisting the toString() representation. * Add DB and formatting changes * Add tests, make minor fixes
This commit is contained in:
parent
d00ade8ae0
commit
03bbb2c057
16 changed files with 192 additions and 21 deletions
|
@ -92,9 +92,9 @@ CREATE TABLE public."PremiumEntry" (
|
|||
CREATE TABLE public."PremiumList" (
|
||||
revision_id bigint NOT NULL,
|
||||
creation_timestamp timestamp with time zone NOT NULL,
|
||||
currency bytea NOT NULL,
|
||||
name text NOT NULL,
|
||||
bloom_filter bytea NOT NULL
|
||||
bloom_filter bytea NOT NULL,
|
||||
currency text DEFAULT 'USD'::text NOT NULL
|
||||
);
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue