Advertisement
Guest User

Echelon problem

a guest
Sep 3rd, 2012
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. # phpMyAdmin SQL Dump
  2. # version 2.5.7
  3. # http://www.phpmyadmin.net
  4. #
  5. # Host: localhost
  6. # Generation Time: May 23, 2005 at 10:56 PM
  7. # Server version: 4.0.20
  8. # PHP Version: 4.3.8
  9. #
  10. # Database : `echelon`
  11. #
  12.  
  13. # --------------------------------------------------------
  14.  
  15. #
  16. # Table structure for table `links`
  17. #
  18.  
  19. CREATE TABLE `links` (
  20. `id` int(11) NOT NULL auto_increment,
  21. `name` varchar(50) NOT NULL default '',
  22. `link` varchar(100) NOT NULL default '',
  23. `description` text,
  24. `level` int(11) NOT NULL default '0',
  25. PRIMARY KEY (`id`)
  26. ) TYPE=MyISAM AUTO_INCREMENT=4 ;
  27.  
  28. #
  29. # Dumping data for table `links`
  30. #
  31.  
  32. INSERT INTO `links` VALUES (1, 'B3 Home', 'http://www.bigbrotherbot.com/', 'BigBrotherBot Home', 3);
  33. INSERT INTO `links` VALUES (2, 'B3 Forums', 'http://www.bigbrotherbot.com/forums/', 'Support and Plugin Forums for B3', 3);
  34. INSERT INTO `links` VALUES (3, 'xlr8or', 'http://www.xlr8or.com/', 'Home of xlr8or', 3);
  35.  
  36. # --------------------------------------------------------
  37.  
  38. #
  39. # Table structure for table `users`
  40. #
  41.  
  42. CREATE TABLE `users` (
  43. `id` int(11) NOT NULL auto_increment,
  44. `username` varchar(25) NOT NULL default '',
  45. `password` varchar(32) NOT NULL default '',
  46. `ech_level` int(11) NOT NULL default '0',
  47. `b3cod` int(11) default NULL,
  48. `b3uo` int(11) default NULL,
  49. PRIMARY KEY (`id`)
  50. ) TYPE=MyISAM AUTO_INCREMENT=2 ;
  51.  
  52. #
  53. # Dumping data for table `users`
  54. #
  55.  
  56. INSERT INTO `users` VALUES (1, 'admin', '21232f297a57a5a743894a0e4a801fc3', 1, 0, 0);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement