Skip to content

Instantly share code, notes, and snippets.

@e06widu
Created May 28, 2013 04:28
Show Gist options
  • Save e06widu/5660529 to your computer and use it in GitHub Desktop.
Save e06widu/5660529 to your computer and use it in GitHub Desktop.
install.mysql.utf8.sql
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