I have this code ```ts export enum field_types { numeric = 'numeric', text = 'text', textarea = 'textarea', select = 'select' } export const typeEnum = pgEnum('type', Object.values(field_types)); ``` But it shows this error