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
In my database I use custom domain like:
Create Domain email As text; Create Domain phone_number As varChar(16);
Currently when I generate the types, it seams to work in general but fails for arrays.
In this example all columns are from type email or email[]
email
email[]
SQL Create Table private.email ( email_from email not null, email_reply_to email null, email_to email[] not null, email_cc email[] null, email_bcc email[] null, TS export type PrivateEmail = { from: string; reply_to: string | null; to: unknown[]; cc: unknown[] | null;
In my opinion, it would be a nice addition if the domain got its own type. e.g.
SQL Create Domain email As text; TS export type email = string;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In my database I use custom domain like:
Currently when I generate the types, it seams to work in general but fails for arrays.
In this example all columns are from type
email
oremail[]
In my opinion, it would be a nice addition if the domain got its own type.
e.g.
The text was updated successfully, but these errors were encountered: