Advertisement
Guest User

ILIKEGOODPUSSYANDILIKEGOODTREES

a guest
Dec 25th, 2017
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.7.4
  3. -- https://www.phpmyadmin.net/
  4. --
  5. -- Host: 127.0.0.1
  6. -- Gegenereerd op: 25 dec 2017 om 14:33
  7. -- Serverversie: 10.1.29-MariaDB
  8. -- PHP-versie: 7.1.12
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET AUTOCOMMIT = 0;
  12. START TRANSACTION;
  13. SET time_zone = "+00:00";
  14.  
  15.  
  16. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  17. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  18. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  19. /*!40101 SET NAMES utf8mb4 */;
  20.  
  21. --
  22. -- Database: `dafonline`
  23. --
  24.  
  25. -- --------------------------------------------------------
  26.  
  27. --
  28. -- Tabelstructuur voor tabel `users`
  29. --
  30.  
  31. CREATE TABLE `users` (
  32. `id` int(11) NOT NULL,
  33. `naam` varchar(255) NOT NULL,
  34. `email` varchar(255) NOT NULL,
  35. `password` varchar(255) NOT NULL,
  36. `leeftijd` int(11) NOT NULL,
  37. `telefoonnummer` int(100) NOT NULL,
  38. `groep` int(5) NOT NULL,
  39. `rang` varchar(255) NOT NULL,
  40. `landmacht` int(5) NOT NULL,
  41. `KLU` int(5) NOT NULL,
  42. `groepsapp` int(5) NOT NULL,
  43. `ip` varchar(255) NOT NULL,
  44. `notes` varchar(999) NOT NULL
  45. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  46.  
  47. --
  48. -- Gegevens worden geëxporteerd voor tabel `users`
  49. --
  50.  
  51. INSERT INTO `users` (`id`, `naam`, `email`, `password`, `leeftijd`, `telefoonnummer`, `groep`, `rang`, `landmacht`, `KLU`, `groepsapp`, `ip`, `notes`) VALUES
  52. (1, 'Michel Z', 'sjarreldevis@gmail.com', '$2y$10$vFyhhVpS47XwZaPJxX.q7eJv1JyikF.asEiKUzPZWDbz4c1jXSfq6', 15, 682003555, 3, 'Korporaal Der Eerste Klasse', 1, 1, 1, '89.99.94.177', 'Michel is gewoon de beste die er is.'),
  53. (2, 'Benjamin C', 'yes@gmail.com', '$2y$10$iyFz1KiWWFfU3QQ2siLLKugNLEEDoEiMqF98tGBkJIKqrigpKYBNW', 19, 682758476, 0, 'Generaal', 1, 0, 1, '11.11.11.11', 'Wat een rare gast kappa'),
  54. (3, 'Lucas K', 'weetikveel@gmail.com', '$2y$10$5O2191s3igx4YATW1H1SBuUz66hyU1GThxz7j3ZYza6cheeuVCq6C', 18, 684769275, 1, 'Sld1', 1, 1, 1, '22.22.22.22', 'Ook een rare gast');
  55.  
  56. --
  57. -- Indexen voor geëxporteerde tabellen
  58. --
  59.  
  60. --
  61. -- Indexen voor tabel `users`
  62. --
  63. ALTER TABLE `users`
  64. ADD PRIMARY KEY (`id`);
  65.  
  66. --
  67. -- AUTO_INCREMENT voor geëxporteerde tabellen
  68. --
  69.  
  70. --
  71. -- AUTO_INCREMENT voor een tabel `users`
  72. --
  73. ALTER TABLE `users`
  74. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
  75. COMMIT;
  76.  
  77. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  78. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  79. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement