-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdb.sql
95 lines (78 loc) · 2.39 KB
/
db.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
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
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Servidor: 127.0.0.1
-- Tiempo de generación: 28-05-2020 a las 00:56:01
-- Versión del servidor: 10.4.11-MariaDB
-- Versión de PHP: 7.4.5
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Base de datos: `noicoder_sake`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `clanes`
--
CREATE TABLE `clanes` (
`matados` int(11) NOT NULL,
`muertos` int(11) NOT NULL,
`ID` int(11) NOT NULL,
`puntos` int(11) NOT NULL,
`miembros` int(11) NOT NULL DEFAULT 0,
`fundador` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `configuracion`
--
CREATE TABLE `configuracion` (
`num` int(11) NOT NULL,
`ultimoupd` time NOT NULL,
`cfg` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `pjs`
--
CREATE TABLE `pjs` (
`frags` int(11) NOT NULL DEFAULT 0,
`muertes` int(11) NOT NULL DEFAULT 0,
`partidos` int(11) NOT NULL DEFAULT 0,
`puntos` int(11) NOT NULL DEFAULT 0,
`nick` text NOT NULL,
`clan` text NOT NULL,
`codigo` text NOT NULL,
`mail` text NOT NULL,
`PIN` text NOT NULL,
`Ban` int(11) NOT NULL,
`ultimologin` text NOT NULL,
`Bantxt` text NOT NULL,
`ultimosv` text NOT NULL,
`rank` int(11) NOT NULL,
`rank_old` int(11) NOT NULL,
`rank_frags` int(11) NOT NULL,
`rank_frags_old` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `servers`
--
CREATE TABLE `servers` (
`keysec` text NOT NULL,
`ultima` time NOT NULL,
`IP` text NOT NULL,
`players` text NOT NULL,
`Mapa` int(11) NOT NULL,
`Nombre` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;