forked from AutLaaw/mythic-framework-autlaaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmythic.sql
More file actions
126 lines (109 loc) · 4.66 KB
/
mythic.sql
File metadata and controls
126 lines (109 loc) · 4.66 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Server version: 10.8.3-MariaDB - mariadb.org binary distribution
-- Server OS: Win64
-- HeidiSQL Version: 11.3.0.6295
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!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 */;
-- Dumping database structure for mythicrp
CREATE DATABASE IF NOT EXISTS `mythicrp` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `mythicrp`;
-- Dumping structure for table mythicrp.crafting_cooldowns
DROP TABLE IF EXISTS `crafting_cooldowns`;
CREATE TABLE IF NOT EXISTS `crafting_cooldowns` (
`bench` varchar(64) NOT NULL,
`id` varchar(64) NOT NULL,
`expires` bigint(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- Data exporting was unselected.
-- Dumping structure for table mythicrp.inventory
DROP TABLE IF EXISTS `inventory`;
CREATE TABLE IF NOT EXISTS `inventory` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET utf8mb3 NOT NULL DEFAULT '0',
`slot` int(11) DEFAULT NULL,
`item_id` varchar(255) CHARACTER SET utf8mb3 DEFAULT NULL,
`quality` int(11) DEFAULT NULL,
`information` varchar(1024) CHARACTER SET utf8mb3 NOT NULL DEFAULT '0',
`dropped` tinyint(4) NOT NULL DEFAULT 0,
`creationDate` bigint(20) NOT NULL DEFAULT 0,
`expiryDate` bigint(20) NOT NULL DEFAULT -1,
PRIMARY KEY (`id`) USING BTREE,
KEY `name` (`name`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=1164831 DEFAULT CHARSET=latin1;
-- Data exporting was unselected.
-- Dumping structure for table mythicrp.inventory_shop_logs
DROP TABLE IF EXISTS `inventory_shop_logs`;
CREATE TABLE IF NOT EXISTS `inventory_shop_logs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`date` datetime NOT NULL DEFAULT current_timestamp(),
`inventory` varchar(255) NOT NULL DEFAULT '0',
`item` varchar(255) NOT NULL DEFAULT '0',
`count` int(11) NOT NULL DEFAULT 0,
`itemId` bigint(20) DEFAULT NULL,
`buyer` int(11) NOT NULL DEFAULT 0,
`metadata` varchar(512) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=91 DEFAULT CHARSET=latin1;
-- Data exporting was unselected.
-- Dumping structure for table mythicrp.meth_tables
DROP TABLE IF EXISTS `meth_tables`;
CREATE TABLE IF NOT EXISTS `meth_tables` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`tier` int(11) NOT NULL DEFAULT 1,
`created` bigint(20) NOT NULL,
`cooldown` bigint(20) DEFAULT NULL,
`recipe` varchar(512) NOT NULL,
`active_cook` varchar(512) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
-- Data exporting was unselected.
-- Dumping structure for table mythicrp.placed_meth_tables
DROP TABLE IF EXISTS `placed_meth_tables`;
CREATE TABLE IF NOT EXISTS `placed_meth_tables` (
`table_id` int(11) NOT NULL,
`owner` bigint(20) DEFAULT NULL,
`placed` bigint(20) NOT NULL DEFAULT 0,
`expires` bigint(20) NOT NULL DEFAULT 0,
`coords` varchar(255) NOT NULL,
`heading` double NOT NULL DEFAULT 0,
PRIMARY KEY (`table_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- Data exporting was unselected.
-- Dumping structure for table mythicrp.placed_props
DROP TABLE IF EXISTS `placed_props`;
CREATE TABLE IF NOT EXISTS `placed_props` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`model` varchar(255) NOT NULL DEFAULT '',
`coords` varchar(255) NOT NULL,
`heading` double NOT NULL DEFAULT 0,
`created` datetime NOT NULL DEFAULT current_timestamp(),
`creator` bigint(20) NOT NULL,
`is_frozen` tinyint(1) NOT NULL DEFAULT 0,
`is_enabled` tinyint(1) NOT NULL DEFAULT 1,
`type` int(11) NOT NULL DEFAULT 0,
`name_override` varchar(64) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=latin1;
-- Data exporting was unselected.
DROP TABLE IF EXISTS `outfit_codes`;
CREATE TABLE IF NOT EXISTS `outfit_codes` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`Code` VARCHAR(50) NULL DEFAULT NULL COLLATE 'latin1_swedish_ci',
`Label` VARCHAR(25) NULL DEFAULT NULL COLLATE 'latin1_swedish_ci',
`Data` LONGTEXT NULL DEFAULT NULL COLLATE 'latin1_swedish_ci',
PRIMARY KEY (`id`) USING BTREE
)
COLLATE='latin1_swedish_ci'
ENGINE=InnoDB
AUTO_INCREMENT=16
;
/*!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) */;