Table
learningpathactions
Each row represents an event along a learner's path through a program, including milestones, timing, and due dates.
statusgroupRedshift
All tables
learningpathactions
Each row represents an event along a learner's path through a program, including milestones, timing, and due dates.
Full schema
View all columns and table relationships (SchemaSpy)Status group
Yes, this table includes a statusgroup column. See Status Group for details.
Column details
| Column | Type |
|---|---|
id | varchar(36) |
companyid | varchar(36) |
learningpathid | varchar(36) |
milestoneid | varchar(36) |
source | varchar(255) |
type | varchar(255) |
userid | varchar(36) |
timestamp | timestamp |
updatedat | timestamp |
licenseid | varchar(36) |
createdat | timestamp |
duedate | timestamp |
statusgroup | varchar(256) |
statusgroupupdatedat | timestamp |
Column names and types come from the Redshift analytics schema. SchemaSpy is authoritative for nullability, defaults, keys, and relationships.
Sample query
select
t.learningpathid,
t.milestoneid,
t.source,
t.type,
t.userid
from learningpathactions as t
limit 100