Changes rate limiting
changes_rate_limiting¶
- Schema: public
- PK:
id(uuid, defaultgen_random_uuid())
TTL-based rate limiting. Rows auto-expire after 1 hour.
Columns¶
| Column | Type | Nullable | Default | Notes |
|---|---|---|---|---|
| id | uuid | NOT NULL | gen_random_uuid() | PK |
| app_id | text | YES | ||
| row_expiration_time | timestamptz | YES | now() + interval '1 hour' | Auto-expiry timestamp |
Key indexes¶
changes_rate_limiting_pk-- PK onid