-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpolicearmory.sql
38 lines (32 loc) · 1.66 KB
/
policearmory.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
-- --------------------------------------------------------
-- Host: 162.19.139.137
-- Server versie: 10.6.14-MariaDB - mariadb.org binary distribution
-- Server OS: Win64
-- HeidiSQL Versie: 12.6.0.6765
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-- Databasestructuur van s56372_esx wordt geschreven
CREATE DATABASE IF NOT EXISTS `s56372_esx` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_swedish_ci */;
USE `s56372_esx`;
-- Structuur van tabel s56372_esx.police_armory wordt geschreven
CREATE TABLE IF NOT EXISTS `police_armory` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`weapon_name` varchar(255) NOT NULL,
`owner` varchar(46) DEFAULT NULL,
`ammo` int(11) DEFAULT 0,
`ammo_price` decimal(10,2) DEFAULT 0.00,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Dumpen data van tabel s56372_esx.police_armory: ~0 rows (ongeveer)
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;