Advertisement
Mionelal

Untitled

Aug 28th, 2014
1,018
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 2.04 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.2.7
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: localhost
  6. -- Generation Time: Aug 28, 2014 at 05:27 PM
  7. -- Server version: 5.6.17
  8. -- PHP Version: 5.3.28
  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: `svr`
  21. --
  22.  
  23. -- --------------------------------------------------------
  24.  
  25. --
  26. -- Table structure for table `players`
  27. --
  28.  
  29. CREATE TABLE IF NOT EXISTS `players` (
  30. `ID` int(10) NOT NULL,
  31.   `User` varchar(24) NOT NULL,
  32.   `Pass` varchar(129) NOT NULL,
  33.   `IP` varchar(16) NOT NULL,
  34.   `Admin` int(10) NOT NULL,
  35.   `SkinID` int(10) NOT NULL,
  36.   `LastActivity` varchar(20) NOT NULL,
  37.   `Health` float NOT NULL,
  38.   `Armour` float NOT NULL,
  39.   `MoneyHand` int(10) NOT NULL,
  40.   `MoneyBank` int(10) NOT NULL,
  41.   `AccountLocked` int(10) NOT NULL,
  42.   `AccountBanned` int(10) NOT NULL,
  43.   `BanningAdmin` varchar(24) NOT NULL,
  44.   `BannedReason` varchar(24) NOT NULL,
  45.   `WeaponSlot1` int(10) NOT NULL,
  46.   `WepSlotAmmo1` int(10) NOT NULL,
  47.   `WeaponSlot2` int(10) NOT NULL,
  48.   `WepSlotAmmo2` int(10) NOT NULL,
  49.   `WeaponSlot3` int(10) NOT NULL,
  50.   `WepSlotAmmo3` int(10) NOT NULL,
  51.   `WeaponSlot4` int(10) NOT NULL,
  52.   `WepSlotAmmo4` int(10) NOT NULL,
  53.   `WeaponSlot5` int(10) NOT NULL,
  54.   `WepSlotAmmo5` int(10) NOT NULL
  55. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
  56.  
  57. --
  58. -- Indexes for dumped tables
  59. --
  60.  
  61. --
  62. -- Indexes for table `players`
  63. --
  64. ALTER TABLE `players`
  65.  ADD PRIMARY KEY (`ID`);
  66.  
  67. --
  68. -- AUTO_INCREMENT for dumped tables
  69. --
  70.  
  71. --
  72. -- AUTO_INCREMENT for table `players`
  73. --
  74. ALTER TABLE `players`
  75. MODIFY `ID` int(10) NOT NULL AUTO_INCREMENT;
  76. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  77. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  78. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement