Skip to content

Instantly share code, notes, and snippets.

@taleeb35
Created September 15, 2014 05:43
Show Gist options
  • Save taleeb35/f7a7b135b3ee8eb9a8d4 to your computer and use it in GitHub Desktop.
Save taleeb35/f7a7b135b3ee8eb9a8d4 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 11:03:31
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for countries
-- ----------------------------
DROP TABLE IF EXISTS `countries`;
CREATE TABLE `countries` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(60) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of countries
-- ----------------------------
INSERT INTO `countries` VALUES ('1', 'Pakistan');
INSERT INTO `countries` VALUES ('2', 'USA');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment