-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathround_stats.sql
67 lines (59 loc) · 2.35 KB
/
round_stats.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
-- phpMyAdmin SQL Dump
-- version 4.9.1
-- https://www.phpmyadmin.net/
--
-- Servidor: localhost
-- Tiempo de generación: 17-11-2019 a las 18:05:10
-- Versión del servidor: 10.4.8-MariaDB
-- Versión de PHP: 7.3.11
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
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: `game`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `round_stats`
--
CREATE TABLE `round_stats` (
`id` tinyint(1) NOT NULL,
`totalUsers` int(6) NOT NULL DEFAULT 0,
`activeUsers` int(5) NOT NULL DEFAULT 0,
`warezSent` double NOT NULL DEFAULT 0,
`spamSent` bigint(15) NOT NULL DEFAULT 0,
`bitcoinSent` double UNSIGNED NOT NULL DEFAULT 0,
`mailSent` int(6) NOT NULL DEFAULT 0,
`ddosCount` int(6) NOT NULL DEFAULT 0,
`hackCount` int(5) NOT NULL DEFAULT 0,
`clans` int(4) NOT NULL DEFAULT 0,
`timePlaying` bigint(15) NOT NULL DEFAULT 0,
`totalListed` int(6) NOT NULL DEFAULT 0,
`totalVirus` int(5) NOT NULL DEFAULT 0,
`totalMoney` bigint(20) NOT NULL DEFAULT 0,
`researchCount` int(5) NOT NULL DEFAULT 0,
`moneyResearch` int(20) UNSIGNED NOT NULL DEFAULT 0,
`moneyHardware` int(20) UNSIGNED NOT NULL DEFAULT 0,
`moneyEarned` int(20) UNSIGNED DEFAULT 0,
`moneyTransfered` int(20) UNSIGNED NOT NULL DEFAULT 0,
`usersClicks` int(10) UNSIGNED NOT NULL DEFAULT 0,
`missionCount` int(10) UNSIGNED NOT NULL DEFAULT 0,
`totalConnections` int(10) UNSIGNED NOT NULL DEFAULT 0,
`totalTasks` int(10) UNSIGNED NOT NULL DEFAULT 0,
`totalSoftware` int(10) UNSIGNED NOT NULL DEFAULT 0,
`totalRunning` int(10) UNSIGNED NOT NULL DEFAULT 0,
`totalServers` int(10) UNSIGNED NOT NULL DEFAULT 0,
`clansWar` int(10) UNSIGNED NOT NULL DEFAULT 0,
`clansMembers` int(5) UNSIGNED NOT NULL DEFAULT 0,
`clansClicks` int(10) UNSIGNED NOT NULL DEFAULT 0,
`onlineUsers` int(5) UNSIGNED NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
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 */;