80 lines
3 KiB
MySQL
80 lines
3 KiB
MySQL
|
-- MySQL dump 10.13 Distrib 5.7.39, for Win64 (x86_64)
|
||
|
--
|
||
|
-- Host: localhost Database: labyrinth
|
||
|
-- ------------------------------------------------------
|
||
|
-- Server version 5.7.39-log
|
||
|
|
||
|
/*!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 utf8 */;
|
||
|
/*!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 */;
|
||
|
|
||
|
--
|
||
|
-- Table structure for table `player_details`
|
||
|
--
|
||
|
|
||
|
DROP TABLE IF EXISTS `player_details`;
|
||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
CREATE TABLE `player_details` (
|
||
|
`gamerid` char(4) NOT NULL,
|
||
|
`username` varchar(32) NOT NULL,
|
||
|
`email` varchar(32) NOT NULL,
|
||
|
`password` varchar(32) NOT NULL,
|
||
|
PRIMARY KEY (`gamerid`)
|
||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
||
|
--
|
||
|
-- Dumping data for table `player_details`
|
||
|
--
|
||
|
|
||
|
LOCK TABLES `player_details` WRITE;
|
||
|
/*!40000 ALTER TABLE `player_details` DISABLE KEYS */;
|
||
|
INSERT INTO `player_details` VALUES ('1AB3','ABC_123','abc@gmail.com','Q0FCXzMyMQ=='),('2BC4','DEF_456','def@gmail.com','RkVEXzY1NA=='),('3CD5','GHI_789','mb8717@boysmgp.onmicrosoft.com','SUhHXzk4Nw=='),('4DE6','JKL_100','mb11859@boysmgp.onmicrosoft.com','TEtKXzAwMQ==');
|
||
|
/*!40000 ALTER TABLE `player_details` ENABLE KEYS */;
|
||
|
UNLOCK TABLES;
|
||
|
|
||
|
--
|
||
|
-- Table structure for table `scores`
|
||
|
--
|
||
|
|
||
|
DROP TABLE IF EXISTS `scores`;
|
||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
CREATE TABLE `scores` (
|
||
|
`gamerid` char(4) NOT NULL,
|
||
|
`highscore` int(11) DEFAULT NULL,
|
||
|
`lastplayed` date DEFAULT NULL,
|
||
|
`timesplayed` int(11) DEFAULT NULL,
|
||
|
PRIMARY KEY (`gamerid`)
|
||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
||
|
--
|
||
|
-- Dumping data for table `scores`
|
||
|
--
|
||
|
|
||
|
LOCK TABLES `scores` WRITE;
|
||
|
/*!40000 ALTER TABLE `scores` DISABLE KEYS */;
|
||
|
INSERT INTO `scores` VALUES ('1AB3',85012,'2022-11-02',3),('2BC4',90012,'2022-11-12',2),('4DE6',90120,'2022-10-24',5);
|
||
|
/*!40000 ALTER TABLE `scores` ENABLE KEYS */;
|
||
|
UNLOCK TABLES;
|
||
|
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||
|
|
||
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||
|
/*!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 */;
|
||
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||
|
|
||
|
-- Dump completed on 2022-11-17 18:35:12
|