export enum field_types {
numeric = 'numeric',
text = 'text',
textarea = 'textarea',
select = 'select'
}
export const typeEnum = pgEnum('type', Object.values(field_types));
export enum field_types {
numeric = 'numeric',
text = 'text',
textarea = 'textarea',
select = 'select'
}
export const typeEnum = pgEnum('type', Object.values(field_types));