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
import { z } from 'zod'; export const Table = z.object({ column: z.number().int().nullable().optional(), }); export type TableT = z.infer<typeof Table>;
import { z } from 'zod'; export const Table = z.object({ column: z.number().int().nullable().optional(), column: z.number().int().nullable().optional(), }); export type TableT = z.infer<typeof Table>;
Have a table in schema1
schema1
create table schema1."table" ( "column" integer );
Create a view from this table in an other schema2
schema2
CREATE VIEW schema2.table as ( SELECT * FROM schema1.table )
Generate types from schema2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected Behavior
Actual Behavior
Steps to Reproduce the Problem
Have a table in
schema1
Create a view from this table in an other
schema2
Generate types from
schema2
Specifications
The text was updated successfully, but these errors were encountered: