Skip to content

Instantly share code, notes, and snippets.

@dchohfi
Created May 25, 2012 22:15
Show Gist options
  • Save dchohfi/2790892 to your computer and use it in GitHub Desktop.
Save dchohfi/2790892 to your computer and use it in GitHub Desktop.
Tarefas e usuarios
create table tarefas (id BIGINT NOT NULL AUTO_INCREMENT,descricao VARCHAR(255),finalizado BOOLEAN,dataFinalizacao DATE,primary key (id));
create table usuarios (login varchar(255), senha varchar(255));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment