Calendar Event Users

The calendar_event_users table contains data about which user is hosting which event (calendar event).

This table can be used to determine which users are hosts to which events, as well as metadata about the hosting relationship such as when it was created.

Columns

Column Name Description Type Nullable
id The numerical identifier of the object. INT8 No
calendar_event_id The numerical identifier of the event that this hosting relationship is attached to. Relates to the id column in the calendar_events table. INT8 No
user_id The numerical identifier of the user that is hosting this event. Relates to the id column in the users table. INT8 No
created_at The UTC timestamp when this object was created. TIMESTAMP No
updated_at The UTC timestamp when this object was updated. TIMESTAMP No