Created
May 28, 2013 04:28
-
-
Save e06widu/5660529 to your computer and use it in GitHub Desktop.
install.mysql.utf8.sql
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
| DROP TABLE IF EXISTS `#__joinwithus`; | |
| CREATE TABLE `#__joinwithus` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `firstname` varchar(100) NOT NULL, | |
| `lastname` varchar(100) DEFAULT NULL, | |
| `age` int(11) DEFAULT NULL, | |
| `city` varchar(100) DEFAULT NULL, | |
| `telephone` varchar(100) DEFAULT NULL, | |
| `email` varchar(100) DEFAULT NULL, | |
| `comment` varchar(100) DEFAULT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment