We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0edef18 commit 4ebc8dfCopy full SHA for 4ebc8df
src/lib/types.ts
@@ -38,6 +38,7 @@ export const postgresColumnSchema = Type.Object({
38
is_updatable: Type.Boolean(),
39
is_unique: Type.Boolean(),
40
enums: Type.Array(Type.String()),
41
+ check: Type.Union([Type.String(), Type.Null()]),
42
comment: Type.Union([Type.String(), Type.Null()]),
43
})
44
export type PostgresColumn = Static<typeof postgresColumnSchema>
0 commit comments