Skip to content

Instantly share code, notes, and snippets.

@erick-jeronimo
Created May 23, 2018 23:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erick-jeronimo/697f159ac91fb5f2146cccb453ed1b0c to your computer and use it in GitHub Desktop.
Save erick-jeronimo/697f159ac91fb5f2146cccb453ed1b0c to your computer and use it in GitHub Desktop.
Criação da tabela
CREATE TABLE usuarios (
id serial,
nome varchar,
login varchar,
senha varchar,
PRIMARY KEY(id)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment