Advertisement
Guest User

ezteyu

a guest
Oct 31st, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 1.24 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:44 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. CREATE DATABASE IF NOT EXISTS `gapp` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
  17. USE `gapp`;
  18.  
  19. -- --------------------------------------------------------
  20.  
  21. --
  22. -- Table structure for table `users`
  23. --
  24.  
  25. CREATE TABLE `users` (
  26. `id` INT(11) NOT NULL,
  27.   `number` VARCHAR(45) NOT NULL,
  28.   `password` VARCHAR(45) NOT NULL
  29. ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;
  30.  
  31. --
  32. -- Dumping data for table `users`
  33. --
  34.  
  35. INSERT INTO `users` (`id`, `number`, `password`) VALUES
  36. (2, 'RubenM', 'RubenM123'),
  37. (12, 'NieuweUser', 'ruben'),
  38. (13, 'Ruben1', '$1$bY5wCXoJ$14ZtTCVfbGNH4fPUgaQdl.'),
  39. (14, 'Tester', '$1$7L/v7.sR$Jkt8fhnCBBWan5mKPPlEW0');
  40.  
  41. --
  42. -- Indexes for dumped tables
  43. --
  44.  
  45. --
  46. -- Indexes for table `users`
  47. --
  48. ALTER TABLE `users`
  49.  ADD PRIMARY KEY (`id`);
  50.  
  51. --
  52. -- AUTO_INCREMENT for dumped tables
  53. --
  54.  
  55. --
  56. -- AUTO_INCREMENT for table `users`
  57. --
  58. ALTER TABLE `users`
  59. MODIFY `id` INT(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=15;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement