Completed the schema for the model

This commit is contained in:
Joaquin Ossa 2024-06-27 10:40:44 +02:00
parent 9950c4d9ae
commit a4b16e7410

View file

@ -816,39 +816,44 @@ models:
description: If the deal has had a booking created in the past 12 months. description: If the deal has had a booking created in the past 12 months.
- name: int_core__check_in_cover_users - name: int_core__check_in_cover_users
description: "" description:
This model contains information about hosts that offer check in cover.
It has basic information on the users like name, phone, email or joined date.
columns: columns:
- name: id_user - name: id_user
data_type: character varying data_type: character varying
description: "" description: Unique id value for the user
tests:
- not_null
- unique
- name: last_name - name: last_name
data_type: character varying data_type: character varying
description: "" description: Last name of the user
- name: user_name - name: user_name
data_type: character varying data_type: character varying
description: "" description: User name of the user
- name: first_name - name: first_name
data_type: character varying data_type: character varying
description: "" description: First name of the user
- name: email - name: email
data_type: character varying data_type: character varying
description: "" description: Email of the user
- name: phone_number - name: phone_number
data_type: character varying data_type: character varying
description: "" description: Phone number of the user
- name: joined_at_utc - name: joined_at_utc
data_type: timestamp without time zone data_type: timestamp without time zone
description: "" description: Date and time the user joined
- name: joined_date_utc - name: joined_date_utc
data_type: date data_type: date
description: "" description: Date the user joined
- name: billing_town - name: billing_town
data_type: character varying data_type: character varying