Skip to main content

Table

testimonials

Each row represents a learner rating and written review of a course group, with approval state.

statusgroupRedshift
All tables

testimonials

Each row represents a learner rating and written review of a course group, with approval state.

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)
useridvarchar(36)
userfirstnamevarchar(255)
userlastnamevarchar(255)
useremailvarchar(255)
coursegroupidvarchar(36)
coursegrouptitlevarchar(1024)
ratingint4
approvedbool
bodyvarchar(65535)
createdattimestamp
updatedattimestamp
licenseidvarchar(36)
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.userid,
  t.coursegroupid,
  t.coursegrouptitle,
  t.rating,
  t.approved
from testimonials as t
limit 100