mirror of
https://github.com/guilhermewerner/java-sql
synced 2025-06-14 20:24:19 +00:00
Create Database.sql
This commit is contained in:
7
Database.sql
Normal file
7
Database.sql
Normal file
@ -0,0 +1,7 @@
|
||||
CREATE TABLE public.usuario (
|
||||
codigo int4 NOT NULL,
|
||||
login varchar NOT NULL,
|
||||
senha varchar NOT NULL,
|
||||
sexo bpchar(1) NOT NULL,
|
||||
CONSTRAINT usuario_pk PRIMARY KEY (codigo)
|
||||
);
|
Reference in New Issue
Block a user