summaryrefslogtreecommitdiff
path: root/backend/src/types/database.ts
blob: fff88a1f6c384116fa12ab40194c2e2e8ad464b8 (plain)
1
2
3
4
5
6
7
export interface PostgresError extends Error {
    code: string;
    detail?: string;
    schema?: string;
    table?: string;
    constraint?: string;
}