Skip to content

Instantly share code, notes, and snippets.

@ivanursul
Created October 26, 2013 08:15
Show Gist options
  • Save ivanursul/7166678 to your computer and use it in GitHub Desktop.
Save ivanursul/7166678 to your computer and use it in GitHub Desktop.
db
CREATE DATABASE IF NOT EXISTS `userdb` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `userdb`;
CREATE TABLE IF NOT EXISTS `user` (
`id` varchar(10) DEFAULT NULL,
`name` varchar(10) DEFAULT NULL,
`gender` varchar(10) DEFAULT NULL,
`status` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment