You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I created a view using PostgreSQL's CREATE VIEW that combines multiple tables in a migration. However it appears that when running pg-schema it does not know that the view even exists and no types are generated.
A VIEW behaves very similarly to a TABLE, responding to the same types of SELECT queries (and possibly UPDATE), so it would be quite helpful if the same type of TypeScript interface was generated for a VIEW as is already generated for a TABLE.
The text was updated successfully, but these errors were encountered:
I created a view using PostgreSQL's CREATE VIEW that combines multiple tables in a migration. However it appears that when running
pg-schema
it does not know that the view even exists and no types are generated.A
VIEW
behaves very similarly to aTABLE
, responding to the same types of SELECT queries (and possibly UPDATE), so it would be quite helpful if the same type of TypeScript interface was generated for aVIEW
as is already generated for aTABLE
.The text was updated successfully, but these errors were encountered: