-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpanel.sql
60 lines (52 loc) · 2.49 KB
/
panel.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Versión del servidor: 10.1.37-MariaDB - mariadb.org binary distribution
-- SO del servidor: Win32
-- HeidiSQL Versión: 10.2.0.5599
-- --------------------------------------------------------
/*!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' */;
-- Volcando estructura para tabla essentialmode.kc_bans
CREATE TABLE IF NOT EXISTS `kc_bans` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(100) NOT NULL DEFAULT '0',
`reason` varchar(250) NOT NULL DEFAULT '0',
`name` varchar(100) NOT NULL DEFAULT '0',
`ip` varchar(16) NOT NULL DEFAULT '127.0.0.1',
`admin_name` varchar(100) NOT NULL DEFAULT '0',
`admin_identifier` varchar(100) NOT NULL DEFAULT '0',
`time` varchar(50) NOT NULL DEFAULT '0',
`date` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=latin1;
-- La exportación de datos fue deseleccionada.
-- Volcando estructura para tabla essentialmode.kc_jails
CREATE TABLE IF NOT EXISTS `kc_jails` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(100) NOT NULL DEFAULT '0',
`name` varchar(100) NOT NULL DEFAULT '0',
`admin_name` varchar(100) NOT NULL DEFAULT '0',
`admin_identifier` varchar(100) NOT NULL DEFAULT '0',
`time` varchar(100) NOT NULL DEFAULT '0',
`time_s` varchar(100) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- La exportación de datos fue deseleccionada.
-- Volcando estructura para tabla essentialmode.kc_warns
CREATE TABLE IF NOT EXISTS `kc_warns` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(100) NOT NULL DEFAULT '0',
`reason` varchar(250) NOT NULL DEFAULT '0',
`name` varchar(250) NOT NULL DEFAULT '0',
`admin_name` varchar(250) NOT NULL DEFAULT '0',
`admin_identifier` varchar(100) NOT NULL DEFAULT '0',
`timestamp` varchar(50) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- La exportación de datos fue deseleccionada.
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;