Advertisement
SSYT

server_cars.sql

Oct 11th, 2017
146
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.5.1
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: 127.0.0.1
  6. -- Generation Time: 11 Oct 2017 la 10:56
  7. -- Versiune server: 10.1.10-MariaDB
  8. -- PHP Version: 5.6.15
  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 utf8mb4 */;
  18.  
  19. --
  20. -- Database: `zp_hid58276`
  21. --
  22.  
  23. -- --------------------------------------------------------
  24.  
  25. --
  26. -- Structura de tabel pentru tabelul `server_cars`
  27. --
  28.  
  29. CREATE TABLE `server_cars` (
  30.   `ID` bigint(200) NOT NULL,
  31.   `vehicletype` int(11) NOT NULL,
  32.   `X` float NOT NULL,
  33.   `Y` float NOT NULL,
  34.   `Z` float NOT NULL,
  35.   `R` float NOT NULL,
  36.   `color1` int(1) NOT NULL,
  37.   `color2` int(1) NOT NULL,
  38.   `respawn_delay` int(11) NOT NULL DEFAULT '180000',
  39.   `addsiren` int(11) NOT NULL,
  40.   `job` int(11) NOT NULL,
  41.   `faction` int(11) NOT NULL,
  42.   `special` int(11) NOT NULL,
  43.   `Fuel` int(11) NOT NULL DEFAULT '100'
  44. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  45.  
  46. --
  47. -- Salvarea datelor din tabel `server_cars`
  48. --
  49.  
  50. INSERT INTO `server_cars` (`ID`, `vehicletype`, `X`, `Y`, `Z`, `R`, `color1`, `color2`, `respawn_delay`, `addsiren`, `job`, `faction`, `special`, `Fuel`) VALUES
  51. (25, 401, 1523.14, -1629.42, 13.5469, 181.293, 0, 0, 180000, 0, 0, 0, 0, 100),
  52. (26, 401, 1099.83, -1763.57, 13.3484, 93.4857, 0, 0, 180000, 0, 0, 0, 0, 100);
  53.  
  54. --
  55. -- Indexes for dumped tables
  56. --
  57.  
  58. --
  59. -- Indexes for table `server_cars`
  60. --
  61. ALTER TABLE `server_cars`
  62.   ADD PRIMARY KEY (`ID`);
  63.  
  64. --
  65. -- AUTO_INCREMENT for dumped tables
  66. --
  67.  
  68. --
  69. -- AUTO_INCREMENT for table `server_cars`
  70. --
  71. ALTER TABLE `server_cars`
  72.   MODIFY `ID` bigint(200) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  73. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  74. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  75. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement