Here is the DDL for the table that was being queried at the :
CREATE TABLE schemaname.tablename (
id text PRIMARY KEY NOT NULL DEFAULT 'a-key-is-here',
schemaVersion INTEGER NOT NULL DEFAULT(0),
status custom.enum NOT NULL DEFAULT('ready'),
updatedAt TIMESTAMP WITH TIME ZONE,
updatedBy text NOT NULL
)