Skip to main content

Table

courseactions

Each row represents a time-stamped learning event in a course (such as a view or progress milestone) with user and license context.

statusgroupRedshift
All tables

courseactions

Each row represents a time-stamped learning event in a course (such as a view or progress milestone) with user and license context.

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

ColumnType
companyidvarchar(36)
idvarchar(36)
courseidvarchar(36)
sourcevarchar(32)
typevarchar(32)
useridvarchar(36)
timestamptimestamp
migratedint4
updatedattimestamp
licenseidvarchar(36)
createdattimestamp
statusgroupvarchar(256)
statusgroupupdatedattimestamp

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.source,
  t.type,
  t.userid,
  t.licenseid
from courseactions as t
limit 100