Description:
Join table representing the many-to-many relationship between bookings and their associated additions.
🔑 Primary Key
Composite key: (booking_id, addition_id)
| Field Name | Data Type | Description |
|---|---|---|
booking_id |
NUMBER | Identifier of the booking associated with the addition. |
addition_id |
NUMBER | Identifier of the addition linked to the booking. |
_snowflake_inserted_at |
TIMESTAMP_NTZ | System timestamp when the record was inserted into Snowflake. |
_snowflake_updated_at |
TIMESTAMP_NTZ | System timestamp when the record was last updated in Snowflake. |
_snowflake_deleted |
BOOLEAN | True if the record was deleted in the source. |