Skip to content

Instantly share code, notes, and snippets.

@jlamim
Created April 15, 2016 23:39
Show Gist options
  • Save jlamim/8f2a4e263e15736150dc0cc8b3259be6 to your computer and use it in GitHub Desktop.
Save jlamim/8f2a4e263e15736150dc0cc8b3259be6 to your computer and use it in GitHub Desktop.
Instrução SQL para criação da tabela de contatos do tutorial sobre CRUD com CodeIgniter
CREATE TABLE IF NOT EXISTS `contatos` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nome` varchar(255) DEFAULT NULL,
`email` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment