mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 01:40:13 -04:00
b4d38fabd0
* Clean up barrel files part 4 * nit * Part 5 of cleaning up barrel files * Revert changes for types * Nit
9 lines
206 B
TypeScript
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',
|
|
}
|