Fixing errors raised by texts
This commit is contained in:
parent
ed5d7828a7
commit
2738c8617d
4 changed files with 8 additions and 8 deletions
|
|
@ -17,12 +17,12 @@ with
|
||||||
-- vstvt.id_verification_type = 15 is the value for check_in_cover verification
|
-- vstvt.id_verification_type = 15 is the value for check_in_cover verification
|
||||||
)
|
)
|
||||||
select
|
select
|
||||||
u.id_user,
|
u.id_user as id_user_host,
|
||||||
u.id_deal,
|
u.id_deal,
|
||||||
u.last_name,
|
u.last_name,
|
||||||
u.user_name,
|
u.user_name,
|
||||||
u.first_name,
|
u.first_name,
|
||||||
u.email,
|
u.email as host_email,
|
||||||
u.phone_number,
|
u.phone_number,
|
||||||
u.joined_at_utc,
|
u.joined_at_utc,
|
||||||
u.joined_date_utc,
|
u.joined_date_utc,
|
||||||
|
|
|
||||||
|
|
@ -931,7 +931,7 @@ models:
|
||||||
This model is restricted to active user so it doesn't include historical data
|
This model is restricted to active user so it doesn't include historical data
|
||||||
like users that had check-in cover but are currently inactive.
|
like users that had check-in cover but are currently inactive.
|
||||||
columns:
|
columns:
|
||||||
- name: id_user
|
- name: id_user_host
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
description: Unique id value for the user
|
description: Unique id value for the user
|
||||||
tests:
|
tests:
|
||||||
|
|
@ -954,7 +954,7 @@ models:
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
description: First name of the user
|
description: First name of the user
|
||||||
|
|
||||||
- name: email
|
- name: host_email
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
description: Email of the user
|
description: Email of the user
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,12 @@ with
|
||||||
)
|
)
|
||||||
|
|
||||||
select
|
select
|
||||||
id_user as id_user_host,
|
id_user_host as id_user_host,
|
||||||
id_deal as id_deal,
|
id_deal as id_deal,
|
||||||
last_name as last_name,
|
last_name as last_name,
|
||||||
user_name as user_name,
|
user_name as user_name,
|
||||||
first_name as first_name,
|
first_name as first_name,
|
||||||
email as host_email,
|
host_email as host_email,
|
||||||
phone_number as phone_number,
|
phone_number as phone_number,
|
||||||
joined_at_utc as joined_at_utc,
|
joined_at_utc as joined_at_utc,
|
||||||
joined_date_utc as joined_date_utc,
|
joined_date_utc as joined_date_utc,
|
||||||
|
|
|
||||||
|
|
@ -885,7 +885,7 @@ models:
|
||||||
This model is restricted to active user so it doesn't include historical data
|
This model is restricted to active user so it doesn't include historical data
|
||||||
like users that had check-in cover but are currently inactive.
|
like users that had check-in cover but are currently inactive.
|
||||||
columns:
|
columns:
|
||||||
- name: id_user
|
- name: id_user_host
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
description: Unique id value for the user
|
description: Unique id value for the user
|
||||||
tests:
|
tests:
|
||||||
|
|
@ -908,7 +908,7 @@ models:
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
description: First name of the user
|
description: First name of the user
|
||||||
|
|
||||||
- name: email
|
- name: host_email
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
description: Email of the user
|
description: Email of the user
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue