Created
May 25, 2012 22:15
-
-
Save dchohfi/2790892 to your computer and use it in GitHub Desktop.
Tarefas e usuarios
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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