Table
waitlists
Each row represents a user waiting for access to a full course, including waitlist status and notification flags.
Redshift
All tables
waitlists
Each row represents a user waiting for access to a full course, including waitlist status and notification flags.
Full schema
View all columns and table relationships (SchemaSpy)Status group
No, this table does not include a statusgroup column.
Column details
| Column | Type |
|---|---|
id | varchar(36) |
companyid | varchar(36) |
courseid | varchar(36) |
userid | varchar(36) |
emailsent | bool |
updatedat | timestamp |
createdat | timestamp |
waitliststatus | varchar(150) |
Column names and types come from the Redshift analytics schema. SchemaSpy is authoritative for nullability, defaults, keys, and relationships.
Sample query
select
t.courseid,
t.userid,
t.emailsent,
t.waitliststatus
from waitlists as t
limit 100