Advertisement
Guest User

Untitled

a guest
Mar 29th, 2015
582
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.58 KB | None | 0 0
  1. -- MySQL dump 10.13 Distrib 5.6.17, for Win64 (x86_64)
  2. --
  3. -- Host: localhost Database: login
  4. -- ------------------------------------------------------
  5. -- Server version 5.6.17
  6.  
  7. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  8. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  9. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  10. /*!40101 SET NAMES utf8 */;
  11. /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
  12. /*!40103 SET TIME_ZONE='+00:00' */;
  13. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  14. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  15. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  16. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  17.  
  18. --
  19. -- Table structure for table `comments`
  20. --
  21.  
  22. DROP TABLE IF EXISTS `comments`;
  23. /*!40101 SET @saved_cs_client = @@character_set_client */;
  24. /*!40101 SET character_set_client = utf8 */;
  25. CREATE TABLE `comments` (
  26. `id` int(11) NOT NULL AUTO_INCREMENT,
  27. `user` varchar(64) DEFAULT NULL,
  28. `comment` longtext,
  29. `date` datetime NOT NULL,
  30. `listingid` int(11) DEFAULT NULL,
  31. PRIMARY KEY (`id`)
  32. ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
  33. /*!40101 SET character_set_client = @saved_cs_client */;
  34.  
  35. --
  36. -- Dumping data for table `comments`
  37. --
  38.  
  39. LOCK TABLES `comments` WRITE;
  40. /*!40000 ALTER TABLE `comments` DISABLE KEYS */;
  41. INSERT INTO `comments` VALUES (1,'asd','Wow that's so cool!','2015-03-29 17:47:23',7),(2,'asd','Actually changed my mind','2015-03-29 17:55:51',7),(3,'asd','I brought it','2015-03-29 18:00:10',7),(4,'asd','\r\nJust my pepe's , cool as shit','2015-03-29 18:10:21',18),(5,'asd','\r\nto buy please conntact me at fucku@gmail.com\r\n','2015-03-29 18:11:43',18),(6,'asd','\r\nBUY IT','2015-03-29 18:11:53',18),(7,'asd','\r\npliz\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','2015-03-29 18:11:59',18),(8,'asd','Please buyerino','2015-03-29 18:12:13',18),(9,'asd','\r\nwat','2015-03-29 19:23:49',18);
  42. /*!40000 ALTER TABLE `comments` ENABLE KEYS */;
  43. UNLOCK TABLES;
  44.  
  45. --
  46. -- Table structure for table `pepes`
  47. --
  48.  
  49. DROP TABLE IF EXISTS `pepes`;
  50. /*!40101 SET @saved_cs_client = @@character_set_client */;
  51. /*!40101 SET character_set_client = utf8 */;
  52. CREATE TABLE `pepes` (
  53. `idPepes` int(11) NOT NULL AUTO_INCREMENT,
  54. `Title` tinytext COLLATE utf8_unicode_ci,
  55. `Description` mediumtext COLLATE utf8_unicode_ci,
  56. `DateAdded` date NOT NULL,
  57. `WMLocation` tinytext COLLATE utf8_unicode_ci,
  58. `CLRLocation` tinytext COLLATE utf8_unicode_ci,
  59. `Price` int(10) unsigned DEFAULT NULL,
  60. `Owner` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  61. PRIMARY KEY (`idPepes`)
  62. ) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  63. /*!40101 SET character_set_client = @saved_cs_client */;
  64.  
  65. --
  66. -- Dumping data for table `pepes`
  67. --
  68.  
  69. LOCK TABLES `pepes` WRITE;
  70. /*!40000 ALTER TABLE `pepes` DISABLE KEYS */;
  71. INSERT INTO `pepes` VALUES (7,'Rare Pepe #1','This is one of the many rare pepes I own. \r\n\r\nTest pepe.','2015-03-29','WMPepes/gk8dov6ebnhp1sl095qjcm3r7zixafut.jpg','Pepes/8jihzq1p2wosa30fdvckl6ermn5ug97y.jpg',5,'pepeking'),(18,'asf','dsadsa','2015-03-29','WMPepes/rplbaqmnkxdowhv54fc73ts9e21gu68i.jpg','Pepes/tfv60875njemkgil9pbrqs1o3ayc4wzh.jpg',0,'asd'),(21,'Card pepe','He's in a card','2015-03-29','WMPepes/np8euifdoa79w5jqy13vxklb2hz4rcs0.jpg','Pepes/45pvtwjg1xiur6os8qld73azhm09ekfb.jpg',1,'asd');
  72. /*!40000 ALTER TABLE `pepes` ENABLE KEYS */;
  73. UNLOCK TABLES;
  74.  
  75. --
  76. -- Table structure for table `users`
  77. --
  78.  
  79. DROP TABLE IF EXISTS `users`;
  80. /*!40101 SET @saved_cs_client = @@character_set_client */;
  81. /*!40101 SET character_set_client = utf8 */;
  82. CREATE TABLE `users` (
  83. `user_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'auto incrementing user_id of each user, unique index',
  84. `user_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL COMMENT 'user''s name, unique',
  85. `user_password_hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL COMMENT 'user''s password in salted and hashed format',
  86. `user_email` varchar(64) COLLATE utf8_unicode_ci NOT NULL COMMENT 'user''s email, unique',
  87. `money` int(10) unsigned DEFAULT '10',
  88. PRIMARY KEY (`user_id`),
  89. UNIQUE KEY `user_name` (`user_name`),
  90. UNIQUE KEY `user_email` (`user_email`)
  91. ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='user data';
  92. /*!40101 SET character_set_client = @saved_cs_client */;
  93.  
  94. --
  95. -- Dumping data for table `users`
  96. --
  97.  
  98. LOCK TABLES `users` WRITE;
  99. /*!40000 ALTER TABLE `users` DISABLE KEYS */;
  100. INSERT INTO `users` VALUES (1,'asd','$2y$10$IYZEF/2xUZO3i9l8LKPK6O.bJ2oacSfkj5IzjDcsASaYK5L1SwYPa','archlord6@gmail.com',399999757),(2,'asdasd','$2y$10$cqARGACAp4X/H0bg.z4KXORK6cIP91A2RmXbSHZFg1fQbSh4/aPZu','dsadsa@gmail.com',61),(3,'pepeking','$2y$10$QbDIoLJCwjzg.zbyIUrjlO7UXj434ouj5psYFRZqFIODOHoM0YEKy','hhhghh@hotmail.com',60),(4,'aaa','$2y$10$2QaiWz.oKRSnNfdbV3aWxeQ0rW.bhiu7QTPKgRDCF1q8xwda3fNIq','dsadsaa@gmail.com',0),(5,'asdasdasd','$2y$10$gr6NjDgbXU6AojxbkPQdruppHci5iCaLYWUDIo0CySD9qSL.ctlTG','asd@ds.co',10);
  101. /*!40000 ALTER TABLE `users` ENABLE KEYS */;
  102. UNLOCK TABLES;
  103. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
  104.  
  105. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  106. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  107. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  108. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  109. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  110. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  111. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  112.  
  113. -- Dump completed on 2015-03-29 20:52:19
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement