Skip to content

Instantly share code, notes, and snippets.

@bhdrkn
Created September 16, 2012 11:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhdrkn/3732115 to your computer and use it in GitHub Desktop.
Save bhdrkn/3732115 to your computer and use it in GitHub Desktop.
User Sql Table
CREATE TABLE `user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) COLLATE utf8_turkish_ci NOT NULL,
`surname` varchar(50) COLLATE utf8_turkish_ci NOT NULL,
`location` varchar(50) COLLATE utf8_turkish_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_turkish_ci;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment