Upper cased
This commit is contained in:
parent
d5f0db71fd
commit
588e94ed7c
2 changed files with 7 additions and 7 deletions
|
|
@ -53,9 +53,9 @@ models:
|
||||||
- not_null
|
- not_null
|
||||||
- accepted_values:
|
- accepted_values:
|
||||||
values:
|
values:
|
||||||
- "Approved"
|
- "APPROVED"
|
||||||
- "Flagged"
|
- "FLAGGED"
|
||||||
- "Rejected"
|
- "REJECTED"
|
||||||
|
|
||||||
- name: verification_status_reason
|
- name: verification_status_reason
|
||||||
data_type: text
|
data_type: text
|
||||||
|
|
@ -75,8 +75,8 @@ models:
|
||||||
tests:
|
tests:
|
||||||
- accepted_values:
|
- accepted_values:
|
||||||
values:
|
values:
|
||||||
- "Match"
|
- "MATCH"
|
||||||
- "No Match"
|
- "NO MATCH"
|
||||||
|
|
||||||
- name: channel
|
- name: channel
|
||||||
data_type: text
|
data_type: text
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@ with
|
||||||
) as protection_extended_amount,
|
) as protection_extended_amount,
|
||||||
({{ adapter.quote("documents") }} ->> 'PetProtection')::boolean
|
({{ adapter.quote("documents") }} ->> 'PetProtection')::boolean
|
||||||
as pet_protection,
|
as pet_protection,
|
||||||
{{ adapter.quote("documents") }} ->> 'Status' as verification_status,
|
upper({{ adapter.quote("documents") }} ->> 'Status') as verification_status,
|
||||||
{{ adapter.quote("documents") }}
|
{{ adapter.quote("documents") }}
|
||||||
->> 'StatusReason' as verification_status_reason,
|
->> 'StatusReason' as verification_status_reason,
|
||||||
{{ adapter.quote("documents") }} ->> 'EmailFlag' as email_flag,
|
{{ adapter.quote("documents") }} ->> 'EmailFlag' as email_flag,
|
||||||
{{ adapter.quote("documents") }} ->> 'PhoneFlag' as phone_flag,
|
{{ adapter.quote("documents") }} ->> 'PhoneFlag' as phone_flag,
|
||||||
{{ adapter.quote("documents") }} ->> 'WatchList' as watch_list,
|
upper({{ adapter.quote("documents") }} ->> 'WatchList') as watch_list,
|
||||||
{{ adapter.quote("documents") }} ->> 'Channel' as channel,
|
{{ adapter.quote("documents") }} ->> 'Channel' as channel,
|
||||||
({{ adapter.quote("documents") }} ->> 'CheckIn')::date as checkin_date_utc,
|
({{ adapter.quote("documents") }} ->> 'CheckIn')::date as checkin_date_utc,
|
||||||
({{ adapter.quote("documents") }} ->> 'CheckOut')::date
|
({{ adapter.quote("documents") }} ->> 'CheckOut')::date
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue