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
When creating a timetz(p) column with the schema builder:
timetz(p)
await db.schema .createTable("test") .addColumn("t", "timetz(4)") .execute();
parseDataTypeExpressionthrows an Error:
parseDataTypeExpression
Error: invalid column data type "timetz(4)" ❯ Module.parseDataTypeExpression node_modules/kysely/dist/esm/parser/data-type-parser.js:14:11
The text was updated successfully, but these errors were encountered:
.addColumn("t", sql`timetz(4)`)
Sorry, something went wrong.
Oh, that's actually a supported type. Needs fixing.
I forgot to mention that it was for the PostgreSQL dialect.
Successfully merging a pull request may close this issue.
When creating a
timetz(p)
column with the schema builder:parseDataTypeExpression
throws an Error:The text was updated successfully, but these errors were encountered: