Description:
Join table materialising the many-to-many relationship between rentals and their associated additions (e.g. extra services, accessories, or supplementary items linked to a rental).
🔑 Primary Key
Composite key: (rental_id, addition_id)
| Field Name | Data Type | Description |
|---|---|---|
rental_id |
NUMBER | Identifier of the rental associated with the addition. |
addition_id |
NUMBER | Identifier of the addition linked to the rental. |
_snowflake_inserted_at |
TIMESTAMP_NTZ | Timestamp when the record was inserted into Snowflake. |
_snowflake_updated_at |
TIMESTAMP_NTZ | Timestamp when the record was last updated in Snowflake. |
_snowflake_deleted |
BOOLEAN | True if the record was deleted in the source. |