-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
5,609 additions
and
2,143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
-- Current sql file was generated after introspecting the database | ||
-- If you want to run this migration please uncomment this code before executing migrations | ||
/* | ||
CREATE TABLE `connections` ( | ||
`id` int(100) unsigned AUTO_INCREMENT NOT NULL, | ||
`steamid` varchar(255) NOT NULL, | ||
`nickname` varchar(255) NOT NULL, | ||
`ipaddress` varchar(255) NOT NULL, | ||
`country` varchar(255) NOT NULL, | ||
`profile` varchar(255) NOT NULL, | ||
`server` varchar(255) NOT NULL, | ||
`connectedat` varchar(255) NOT NULL, | ||
`disconnectedat` varchar(255) NOT NULL | ||
); | ||
--> statement-breakpoint | ||
CREATE TABLE `mgemod_duels` ( | ||
`id` int(11) AUTO_INCREMENT NOT NULL, | ||
`winner` varchar(32) NOT NULL, | ||
`loser` varchar(32) NOT NULL, | ||
`winnerscore` int(4) NOT NULL, | ||
`loserscore` int(4) NOT NULL, | ||
`winlimit` int(4) NOT NULL, | ||
`gametime` int(11) NOT NULL, | ||
`mapname` varchar(64) NOT NULL, | ||
`arenaname` varchar(64) NOT NULL | ||
); | ||
--> statement-breakpoint | ||
CREATE TABLE `mgemod_duels_2v2` ( | ||
`id` int(11) AUTO_INCREMENT NOT NULL, | ||
`winner` varchar(32) NOT NULL, | ||
`winner2` varchar(32) NOT NULL, | ||
`loser` varchar(32) NOT NULL, | ||
`loser2` varchar(32) NOT NULL, | ||
`winnerscore` int(4) NOT NULL, | ||
`loserscore` int(4) NOT NULL, | ||
`winlimit` int(4) NOT NULL, | ||
`gametime` int(11) NOT NULL, | ||
`mapname` varchar(64) NOT NULL, | ||
`arenaname` varchar(32) NOT NULL | ||
); | ||
--> statement-breakpoint | ||
CREATE TABLE `mgemod_stats` ( | ||
`id` int(11) AUTO_INCREMENT NOT NULL, | ||
`rating` int(4) NOT NULL, | ||
`steamid` varchar(32) NOT NULL, | ||
`name` varchar(64) NOT NULL, | ||
`wins` int(4) NOT NULL, | ||
`losses` int(4) NOT NULL, | ||
`lastplayed` int(11) NOT NULL, | ||
`hitblip` int(2) NOT NULL | ||
); | ||
--> statement-breakpoint | ||
CREATE TABLE `VPNBlock` ( | ||
`playername` char(128) NOT NULL, | ||
`steamid` char(32) NOT NULL, | ||
`lastupdated` int(64) NOT NULL, | ||
`ip` char(32) NOT NULL, | ||
`proxy` tinyint NOT NULL | ||
); | ||
--> statement-breakpoint | ||
CREATE TABLE `VPNBlock_wl` ( | ||
`steamid` char(32) NOT NULL | ||
); | ||
*/ |
Oops, something went wrong.