Advertisement
Guest User

ezrtyj

a guest
Oct 31st, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 1.14 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.2.10
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: localhost:8889
  6. -- Generation Time: Oct 31, 2014 at 04:41 PM
  7. -- Server version: 5.5.38
  8. -- PHP Version: 5.6.2
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13. --
  14. -- Database: `gapp`
  15. --
  16.  
  17. -- --------------------------------------------------------
  18.  
  19. --
  20. -- Table structure for table `users`
  21. --
  22.  
  23. CREATE TABLE `users` (
  24. `id` INT(11) NOT NULL,
  25.   `number` VARCHAR(45) NOT NULL,
  26.   `password` VARCHAR(45) NOT NULL
  27. ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;
  28.  
  29. --
  30. -- Dumping data for table `users`
  31. --
  32.  
  33. INSERT INTO `users` (`id`, `number`, `password`) VALUES
  34. (2, 'RubenM', 'RubenM123'),
  35. (12, 'NieuweUser', 'ruben'),
  36. (13, 'Ruben1', '$1$bY5wCXoJ$14ZtTCVfbGNH4fPUgaQdl.'),
  37. (14, 'Tester', '$1$7L/v7.sR$Jkt8fhnCBBWan5mKPPlEW0');
  38.  
  39. --
  40. -- Indexes for dumped tables
  41. --
  42.  
  43. --
  44. -- Indexes for table `users`
  45. --
  46. ALTER TABLE `users`
  47.  ADD PRIMARY KEY (`id`);
  48.  
  49. --
  50. -- AUTO_INCREMENT for dumped tables
  51. --
  52.  
  53. --
  54. -- AUTO_INCREMENT for table `users`
  55. --
  56. ALTER TABLE `users`
  57. MODIFY `id` INT(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=15;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement