mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-03-21 17:50:29 -05:00
The idea is to eventually move all client parts to their domain name subdirectory, for clarity and better organization. New Replays is just first. Anyway, yeah, minor updates to New Replays, but otherwise it's just getting deployed as-is, straight to https://replay.pokemonshowdown.com/ The old URLs are getting taken down; they were only used for development anyway.
27 lines
1.1 KiB
SQL
27 lines
1.1 KiB
SQL
-- Database: ps_replays
|
|
-- Generation Time: 2019-06-21 16:24:15.4930
|
|
|
|
/*!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 */;
|
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
|
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
|
/*!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 */;
|
|
|
|
CREATE TABLE `ps_prepreplays` (
|
|
`id` varbinary(255) NOT NULL DEFAULT '',
|
|
`p1` varchar(45) NOT NULL DEFAULT '',
|
|
`p2` varchar(45) NOT NULL,
|
|
`format` varchar(45) NOT NULL,
|
|
`private` tinyint(1) NOT NULL,
|
|
`loghash` varbinary(255) NOT NULL,
|
|
`inputlog` mediumtext,
|
|
`rating` int(11) NOT NULL DEFAULT '0',
|
|
`uploadtime` bigint(20) NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=TokuDB DEFAULT CHARSET=utf8mb4;
|