Advertisement
Guest User

Untitled

a guest
Jan 13th, 2015
1,455
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 1.52 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.2.7.1
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: 127.0.0.1
  6. -- Generation Time: Nov 18, 2014 at 08:15 PM
  7. -- Server version: 5.6.16-log
  8. -- PHP Version: 5.5.15
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13.  
  14. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  15. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  16. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  17. /*!40101 SET NAMES utf8 */;
  18.  
  19. --
  20. -- Database: `test`
  21. --
  22.  
  23. -- --------------------------------------------------------
  24.  
  25. --
  26. -- Table structure for table `users`
  27. --
  28.  
  29. CREATE TABLE IF NOT EXISTS `users` (
  30. `id` INT(11) NOT NULL,
  31.   `username` VARCHAR(255) NOT NULL,
  32.   `points` INT(11) NOT NULL,
  33.   `time` INT(55) NOT NULL
  34. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
  35.  
  36. --
  37. -- Dumping data for table `users`
  38. --
  39.  
  40. INSERT INTO `users` (`id`, `username`, `points`, `time`) VALUES
  41. (2, 'sniffingpickles', 130, 1414771968);
  42.  
  43. --
  44. -- Indexes for dumped tables
  45. --
  46.  
  47. --
  48. -- Indexes for table `users`
  49. --
  50. ALTER TABLE `users`
  51.  ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `username` (`username`);
  52.  
  53. --
  54. -- AUTO_INCREMENT for dumped tables
  55. --
  56.  
  57. --
  58. -- AUTO_INCREMENT for table `users`
  59. --
  60. ALTER TABLE `users`
  61. MODIFY `id` INT(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=4;
  62. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  63. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  64. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement