Skip to main content

Table

coursegroupcustomfields

Each row represents a custom metadata field on a course group, with one row per field per group.

statusgroupRedshift
All tables

coursegroupcustomfields

Each row represents a custom metadata field on a course group, with one row per field per group.

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)
coursegroupidvarchar(36)
labelvarchar(65535)
idvarchar(36)
updatedattimestamp
valuevarchar(65535)
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.coursegroupid,
  t.label,
  t.value
from coursegroupcustomfields as t
limit 100