openapi.endpoint_set_user_rate_limit_map

Cascading Deletes: Deleting rows from this table will cascade to: actor.usr, openapi.endpoint_set, openapi.rate_limit_definition.

Columns

Column Type Nullable Default Notes

id PK

integer

No

nextval('openapi.endpoint_set_user_rate_limit_map_id_seq'::regclass)

accessor FK

integer

No

actor.usr(id)

endpoint_set FK

text

No

openapi.endpoint_set(name)

rate_limit FK

integer

No

openapi.rate_limit_definition(id)

Primary Key

(id)

Foreign Keys

Column(s) References On Delete On Update Deferrable Constraint

accessor

actor.usr(id)

CASCADE

CASCADE

No

endpoint_set_user_rate_limit_map_accessor_fkey

endpoint_set

openapi.endpoint_set(name)

CASCADE

CASCADE

No

endpoint_set_user_rate_limit_map_endpoint_set_fkey

rate_limit

openapi.rate_limit_definition(id)

CASCADE

CASCADE

No

endpoint_set_user_rate_limit_map_rate_limit_fkey

Unique Constraints

  • endpoint_set_accessor_once: (accessor, endpoint_set)

Indexes

Index Method Definition

endpoint_set_user_rate_limit_map_pkey PK

btree

CREATE UNIQUE INDEX endpoint_set_user_rate_limit_map_pkey ON openapi.endpoint_set_user_rate_limit_map USING btree (id)

endpoint_set_accessor_once UNIQUE

btree

CREATE UNIQUE INDEX endpoint_set_accessor_once ON openapi.endpoint_set_user_rate_limit_map USING btree (accessor, endpoint_set)