Just committing to save change and create a new branch for basic to push basic changes

This commit is contained in:
Joaquin Ossa 2024-08-30 10:33:43 +02:00
parent 6adc424963
commit 42510bbb4d
4 changed files with 7 additions and 5 deletions

View file

@ -6,7 +6,7 @@ models:
"Records of each transaction that happens in the edeposit API. Records are
mutable and can get updated."
columns:
- name: id
- name: id_verification
data_type: character varying
description: "Unique id for the specific transaction."
tests:

View file

@ -34,7 +34,9 @@ with
{{ adapter.quote("documents") }} ->> 'Version' as "version",
{{ adapter.quote("documents") }} ->> 'NightlyFee' as "nightly_fee_local",
cast(
{{ adapter.quote("documents") }} ->> 'NightlyFee' as decimal(19, 4)
) as "nightly_fee_local",
{{ adapter.quote("documents") }} ->> 'Status' as verification_status,
{{ adapter.quote("documents") }}