Files
supabase/apps/studio/data/database/database-query-constants.ts
Joshen Lim b4d38fabd0 Chore/barrel files bye part 05 (#40016)
* Clean up barrel files part 4

* nit

* Part 5 of cleaning up barrel files

* Revert changes for types

* Nit
2025-10-31 13:15:31 +08:00

9 lines
206 B
TypeScript

// https://www.postgresql.org/docs/current/catalog-pg-constraint.html
export enum FOREIGN_KEY_CASCADE_ACTION {
NO_ACTION = 'a',
RESTRICT = 'r',
CASCADE = 'c',
SET_NULL = 'n',
SET_DEFAULT = 'd',
}