Skip to content

Instantly share code, notes, and snippets.

View GhostPython297's full-sized avatar
🌴

João GhostPython297

🌴
View GitHub Profile
/*
criação das tabelas
*/
create table usuario
(
registro serial primary key,
nome varchar(100) not null,
telefone varchar(20)
);