finished schema

This commit is contained in:
Joaquin Ossa 2025-02-24 10:48:34 +01:00
parent 63a2eff6e2
commit 7f8e7489e4

View file

@ -336,6 +336,30 @@ models:
data_type: text data_type: text
description: "Accommodation name." description: "Accommodation name."
- name: check_in_at_utc
data_type: timestamp without time zone
description: "Timestamp of the check-in date in UTC of the booking."
data_tests:
- not_null
- name: check_in_date_utc
data_type: date
description: "Date of the check-in date in UTC of the booking."
data_tests:
- not_null
- name: check_out_at_utc
data_type: timestamp without time zone
description: "Timestamp of the check-out date in UTC of the booking."
data_tests:
- not_null
- name: check_out_date_utc
data_type: date
description: "Date of the check-out date in UTC of the booking."
data_tests:
- not_null
- name: id_booking - name: id_booking
data_type: numeric data_type: numeric
description: "Superhog unique booking ID" description: "Superhog unique booking ID"