We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
create table questions_new_free_assessment ( id bigint not null primary key, inserted_at timestamp default now() not null, updated_at timestamp default now() not null, question_text text not null, question_description text, **type public.valid_question_type not null,** choices text[], answer text, priority integer );
Here the the column type is defined as a custom struct type of the valid_question_type but its not exported in the sql or ts
The text was updated successfully, but these errors were encountered:
CREATE TYPE valid_question_type AS ENUM ('choice', 'int', 'decimal', 'date');
this was used to generate in the beginning
Sorry, something went wrong.
No branches or pull requests
Here the the column type is defined as a custom struct type of the valid_question_type but its not exported in the sql or ts
The text was updated successfully, but these errors were encountered: