Table
registrationcoderedemptions
Each row represents a single use of a registration code by a user at a point in time.
statusgroupRedshift
All tables
registrationcoderedemptions
Each row represents a single use of a registration code by a user at a point in time.
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) |
id | varchar(36) |
redeemedat | timestamp |
registrationcodeid | varchar(36) |
redeemedbyuserid | varchar(36) |
statusgroup | varchar(256) |
statusgroupupdatedat | timestamp |
updatedat | timestamp |
Column names and types come from the Redshift analytics schema. SchemaSpy is authoritative for nullability, defaults, keys, and relationships.
Sample query
select
t.redeemedat,
t.registrationcodeid,
t.redeemedbyuserid
from registrationcoderedemptions as t
limit 100