BD Cadastro

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

CREATE DATABASE cadastro

WITH OWNER = postgres


ENCODING = 'win1252'
TEMPLATE = TEMPLATE0
TABLESPACE = pg_default
CONNECTION LIMIT = -1;
CREATE TABLE pessoa(
cpf character varying(11) NOT NULL,
nome character varying(50),
CONSTRAINT pessoa_pkey PRIMARY KEY (CPF)
);

You might also like