UNPKG

pg-promise-demo

Version:
18 lines (14 loc) 386 B
/* Here we typed in simple models manually. But there are many tools out there for generating database models automatically, from an existing database. For example, schemats: https://github.com/sweetiq/schemats */ export interface IUser { id: number; name: string; } export interface IProduct { id: number; user_id: number; name: string; }