Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View lacivert's full-sized avatar
🍼
I may be slow to respond.

yasin lacivert

🍼
I may be slow to respond.
View GitHub Profile
@lacivert
lacivert / isimler.sql
Created October 31, 2011 14:14 — forked from ismailbaskin/turkce_isimler.sql
isim sözlüğü
CREATE TABLE `isimler` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`ad` varchar(255) COLLATE utf8_bin NOT NULL,
`cinsiyet` varchar(50) COLLATE utf8_bin NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `ad` (`ad`),
KEY `cinsiyet` (`cinsiyet`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;