This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- 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, |