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
| Column | Type |
|---|---|
companyid | varchar(36) |
coursegroupid | varchar(36) |
label | varchar(65535) |
id | varchar(36) |
updatedat | timestamp |
value | varchar(65535) |
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.coursegroupid,
t.label,
t.value
from coursegroupcustomfields as t
limit 100