diff --git a/server/schema.sql b/server/schema.sql new file mode 100644 index 0000000..97c2e29 --- /dev/null +++ b/server/schema.sql @@ -0,0 +1,98 @@ +-- MariaDB dump 10.19-11.0.2-MariaDB, for Linux (x86_64) +-- +-- Host: localhost Database: spotify +-- ------------------------------------------------------ +-- Server version 11.0.2-MariaDB + +/*!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 */; + +-- +-- Temporary table structure for view `CurrentPlaylist` +-- + +DROP TABLE IF EXISTS `CurrentPlaylist`; +/*!50001 DROP VIEW IF EXISTS `CurrentPlaylist`*/; +SET @saved_cs_client = @@character_set_client; +SET character_set_client = utf8; +/*!50001 CREATE VIEW `CurrentPlaylist` AS SELECT + 1 AS `TrackId`, + 1 AS `Uri`, + 1 AS `SpotifyId` */; +SET character_set_client = @saved_cs_client; + +-- +-- Table structure for table `Tracks` +-- + +DROP TABLE IF EXISTS `Tracks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Tracks` ( + `TrackId` int(10) unsigned NOT NULL AUTO_INCREMENT, + `UserId` int(10) unsigned NOT NULL, + `Uri` varchar(100) NOT NULL, + `DateAdded` date NOT NULL, + `InPlaylist` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`TrackId`), + UNIQUE KEY `Tracks_UN` (`Uri`), + KEY `Tracks_FK` (`UserId`), + CONSTRAINT `Tracks_FK` FOREIGN KEY (`UserId`) REFERENCES `Users` (`UserId`) +) ENGINE=InnoDB AUTO_INCREMENT=602 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `Users` +-- + +DROP TABLE IF EXISTS `Users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Users` ( + `UserId` int(10) unsigned NOT NULL AUTO_INCREMENT, + `Email` varchar(150) NOT NULL, + `RefreshToken` varchar(200) DEFAULT NULL, + `SpotifyId` varchar(100) NOT NULL, + `LastRefreshed` timestamp NOT NULL DEFAULT current_timestamp(), + `IsEmilia` tinyint(1) DEFAULT NULL, + PRIMARY KEY (`UserId`), + UNIQUE KEY `Users_UN` (`Email`,`SpotifyId`) +) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Final view structure for view `CurrentPlaylist` +-- + +/*!50001 DROP VIEW IF EXISTS `CurrentPlaylist`*/; +/*!50001 SET @saved_cs_client = @@character_set_client */; +/*!50001 SET @saved_cs_results = @@character_set_results */; +/*!50001 SET @saved_col_connection = @@collation_connection */; +/*!50001 SET character_set_client = utf8mb3 */; +/*!50001 SET character_set_results = utf8mb3 */; +/*!50001 SET collation_connection = utf8mb3_general_ci */; +/*!50001 CREATE ALGORITHM=UNDEFINED */ +/*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ +/*!50001 VIEW `CurrentPlaylist` AS select `t`.`TrackId` AS `TrackId`,`t`.`Uri` AS `Uri`,`u`.`SpotifyId` AS `SpotifyId` from (`Tracks` `t` join `Users` `u` on(`t`.`UserId` = `u`.`UserId`)) where `t`.`InPlaylist` = 1 */; +/*!50001 SET character_set_client = @saved_cs_client */; +/*!50001 SET character_set_results = @saved_cs_results */; +/*!50001 SET collation_connection = @saved_col_connection */; +/*!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 2023-07-12 22:28:00