Skip to content

Instantly share code, notes, and snippets.

View deven003's full-sized avatar

Devendra Verma deven003

View GitHub Profile
@deven003
deven003 / indian_cities.sql
Last active May 8, 2017 10:46
Indian Cities list
--
-- Table structure for table `cities`
--
CREATE TABLE `cities` (
`id` int(10) UNSIGNED NOT NULL,
`city_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`city_state` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,