Skip to content

Instantly share code, notes, and snippets.

@taleeb35
Created September 15, 2014 05:41
Show Gist options
  • Save taleeb35/78c5f1d19f44c08e6427 to your computer and use it in GitHub Desktop.
Save taleeb35/78c5f1d19f44c08e6427 to your computer and use it in GitHub Desktop.
/*
Navicat MySQL Data Transfer
Source Server : localhost_3306
Source Server Version : 50173
Source Host : localhost:3306
Source Database : smart2
Target Server Type : MYSQL
Target Server Version : 50173
File Encoding : 65001
Date: 2014-09-15 10:55:25
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for states
-- ----------------------------
DROP TABLE IF EXISTS `states`;
CREATE TABLE `states` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(60) DEFAULT NULL,
`country_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of states
-- ----------------------------
INSERT INTO `states` VALUES ('1', 'Punjab', 1);
INSERT INTO `states` VALUES ('2', 'Sindh', 1);
INSERT INTO `states` VALUES ('3', 'Ohio', 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment