Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. -- MySQL dump 10.13 Distrib 5.1.54, for debian-linux-gnu (i686)
  2. --
  3. -- Host: localhost Database: nuts
  4. -- ------------------------------------------------------
  5. -- Server version 5.1.54-1ubuntu4
  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 `purses`
  20. --
  21.  
  22. DROP TABLE IF EXISTS `purses`;
  23. /*!40101 SET @saved_cs_client = @@character_set_client */;
  24. /*!40101 SET character_set_client = utf8 */;
  25. CREATE TABLE `purses` (
  26. `uid` int(10) unsigned NOT NULL,
  27. `amount` bigint(20) NOT NULL,
  28. `type` varchar(6) NOT NULL
  29. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  30. /*!40101 SET character_set_client = @saved_cs_client */;
  31.  
  32. --
  33. -- Dumping data for table `purses`
  34. --
  35.  
  36. LOCK TABLES `purses` WRITE;
  37. /*!40000 ALTER TABLE `purses` DISABLE KEYS */;
  38. INSERT INTO `purses` VALUES (110,0,'EUR'),(110,0,'GBP');
  39. /*!40000 ALTER TABLE `purses` ENABLE KEYS */;
  40. UNLOCK TABLES;
  41.  
  42. --
  43. -- Table structure for table `requests`
  44. --
  45.  
  46. DROP TABLE IF EXISTS `requests`;
  47. /*!40101 SET @saved_cs_client = @@character_set_client */;
  48. /*!40101 SET character_set_client = utf8 */;
  49. CREATE TABLE `requests` (
  50. `req_type` varchar(6) NOT NULL,
  51. `uid` int(10) unsigned NOT NULL,
  52. `amount` bigint(20) unsigned NOT NULL,
  53. `curr_type` varchar(6) NOT NULL,
  54. `status` varchar(6) NOT NULL DEFAULT 'verify'
  55. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  56. /*!40101 SET character_set_client = @saved_cs_client */;
  57.  
  58. --
  59. -- Dumping data for table `requests`
  60. --
  61.  
  62. LOCK TABLES `requests` WRITE;
  63. /*!40000 ALTER TABLE `requests` DISABLE KEYS */;
  64. INSERT INTO `requests` VALUES ('DEPOS',110,4,'GBP','VERIFY'),('DEPOS',110,6,'GBP','VERIFY');
  65. /*!40000 ALTER TABLE `requests` ENABLE KEYS */;
  66. UNLOCK TABLES;
  67. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
  68.  
  69. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  70. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  71. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  72. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  73. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  74. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  75. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  76.  
  77. -- Dump completed on 2011-05-20 4:44:22
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement