-- Tables: Segurança / Rate limiting -- Gerado automaticamente em 2026-04-21T23:16:34.957Z -- Total: 1 CREATE TABLE public.submission_rate_limits ( ip_hash text NOT NULL, endpoint text NOT NULL, attempt_count integer DEFAULT 0 NOT NULL, fail_count integer DEFAULT 0 NOT NULL, window_start timestamp with time zone DEFAULT now() NOT NULL, blocked_until timestamp with time zone, requires_captcha_until timestamp with time zone, last_attempt_at timestamp with time zone DEFAULT now() NOT NULL, created_at timestamp with time zone DEFAULT now() NOT NULL );