Created
July 2, 2011 20:17
-
-
Save TiuTalk/1061607 to your computer and use it in GitHub Desktop.
Tabela SQL para armazenar as inscrições
This file contains 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 `inscricoes` ( | |
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, | |
`nome` VARCHAR(50) NOT NULL, | |
`email` VARCHAR(100) NOT NULL, | |
`telefone` CHAR(10) NOT NULL, | |
`endereco` VARCHAR(100) NOT NULL, | |
`created` DATETIME NOT NULL, | |
`updated` DATETIME NOT NULL, | |
UNIQUE (`email`) | |
) ENGINE = MYISAM; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment