const typeEnum = pgEnum('type', [
'short_text',
'long_text',
'single_choice',
'multiple_choice',
]);
export enum SurveyQuestionType {
SHORT_TEXT = 'short_text',
LONG_TEXT = 'long_text',
SINGLE_CHOICE = 'single_choice',
MULTIPLE_CHOICE = 'multiple_choice',
}
const typeEnum = pgEnum('type', [
'short_text',
'long_text',
'single_choice',
'multiple_choice',
]);
export enum SurveyQuestionType {
SHORT_TEXT = 'short_text',
LONG_TEXT = 'long_text',
SINGLE_CHOICE = 'single_choice',
MULTIPLE_CHOICE = 'multiple_choice',
}