mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
|
|
/**
|
||
|
|
* Offical postgres error codes to match against when checking database exceptions.
|
||
|
|
*
|
||
|
|
* https://www.postgresql.org/docs/current/errcodes-appendix.html
|
||
|
|
*/
|
||
|
|
export enum PostgresErrorCodes {
|
||
|
|
UNIQUE_VIOLATION = "23505",
|
||
|
|
}
|