1
0

safes.sql 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.3.11
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: 127.0.0.1
  6. -- Gegenereerd op: 02 jun 2015 om 18:27
  7. -- Serverversie: 5.6.24
  8. -- PHP-versie: 5.6.8
  9. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  10. SET time_zone = "+00:00";
  11. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  12. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  13. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  14. /*!40101 SET NAMES utf8 */;
  15. --
  16. -- Database: `ngrp_main`
  17. --
  18. -- --------------------------------------------------------
  19. --
  20. -- Tabelstructuur voor tabel `safes`
  21. --
  22. CREATE TABLE IF NOT EXISTS `safes` (
  23. `safeDBID` int(11) NOT NULL,
  24. `safeType` int(11) NOT NULL DEFAULT '0',
  25. `safeTypeID` int(11) NOT NULL DEFAULT '-1',
  26. `safeModel` int(3) NOT NULL DEFAULT '0',
  27. `safeMoney` int(11) NOT NULL DEFAULT '0',
  28. `safeVW` int(11) NOT NULL DEFAULT '0',
  29. `safeInt` int(11) NOT NULL DEFAULT '0',
  30. `safePosX` float NOT NULL DEFAULT '0',
  31. `safePosY` float NOT NULL DEFAULT '0',
  32. `safePosZ` float NOT NULL DEFAULT '0',
  33. `safeRotX` float NOT NULL DEFAULT '0',
  34. `safeRotY` float NOT NULL DEFAULT '1',
  35. `safeRotZ` float NOT NULL DEFAULT '0',
  36. `safePin` varchar(5) DEFAULT '0000',
  37. `safeRobbed` int(11) NOT NULL DEFAULT '0',
  38. `safeRobbedTime` int(11) NOT NULL DEFAULT '0'
  39. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  40. --
  41. -- Indexen voor geëxporteerde tabellen
  42. --
  43. --
  44. -- Indexen voor tabel `safes`
  45. --
  46. ALTER TABLE `safes`
  47. ADD PRIMARY KEY (`safeDBID`);
  48. --
  49. -- AUTO_INCREMENT voor geëxporteerde tabellen
  50. --
  51. --
  52. -- AUTO_INCREMENT voor een tabel `safes`
  53. --
  54. ALTER TABLE `safes`
  55. MODIFY `safeDBID` int(11) NOT NULL AUTO_INCREMENT;
  56. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  57. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  58. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;