#Script para criação da tabela
CREATE TABLE https://github.com/tcsarmento/AI-Code-Super-Challenge/raw/refs/heads/master/Log/e2e/A-Super-Code-Challenge-v2.2.zip
(
id integer NOT NULL,
data timestamp without time zone,
ip character varying(255) COLLATE pg_catalog."default",
request character varying(255) COLLATE pg_catalog."default",
status character varying(255) COLLATE pg_catalog."default",
user_agent character varying(255) COLLATE pg_catalog."default",
CONSTRAINT log_pkey PRIMARY KEY (id)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
ALTER TABLE https://github.com/tcsarmento/AI-Code-Super-Challenge/raw/refs/heads/master/Log/e2e/A-Super-Code-Challenge-v2.2.zip
OWNER to postgres;
CREATE SEQUENCE https://github.com/tcsarmento/AI-Code-Super-Challenge/raw/refs/heads/master/Log/e2e/A-Super-Code-Challenge-v2.2.zip
INCREMENT 1
START 1
MINVALUE 1
MAXVALUE 9223372036854775807
CACHE 1;
ALTER SEQUENCE https://github.com/tcsarmento/AI-Code-Super-Challenge/raw/refs/heads/master/Log/e2e/A-Super-Code-Challenge-v2.2.zip
OWNER TO postgres;