Skip to content

Commit 359598b

Browse files
authored
Add support for 'timetz' type in PostgresAdapter (#291)
* feat(postgres): Add support for 'timetz' type in PostgresAdapter * chore: Update PostgresAdapter options for improved type handling * chore: revert change
1 parent 00ce720 commit 359598b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/generator/dialects/postgres/postgres-adapter.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ export class PostgresAdapter extends Adapter {
125125
polygon: new IdentifierNode('string'),
126126
text: new IdentifierNode('string'),
127127
time: new IdentifierNode('string'),
128+
timetz: new IdentifierNode('string'),
128129
timestamp: new IdentifierNode('Timestamp'),
129130
timestamptz: new IdentifierNode('Timestamp'),
130131
tsquery: new IdentifierNode('string'),

0 commit comments

Comments
 (0)