126 lines
3.7 KiB
SQL
Executable File
126 lines
3.7 KiB
SQL
Executable File
-- MariaDB dump 10.18 Distrib 10.5.8-MariaDB, for debian-linux-gnu (x86_64)
|
|
--
|
|
-- Host: localhost Database: athnos
|
|
-- ------------------------------------------------------
|
|
-- Server version 10.5.8-MariaDB-3
|
|
|
|
/*!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 */;
|
|
|
|
--
|
|
-- Table structure for table `clip`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `clip`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `clip` (
|
|
`id` int(10) unsigned DEFAULT NULL,
|
|
`source_id` int(10) unsigned DEFAULT NULL,
|
|
`path` text DEFAULT NULL,
|
|
`type` smallint(1) DEFAULT NULL,
|
|
`name` tinytext DEFAULT NULL,
|
|
`description` text DEFAULT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `clip`
|
|
--
|
|
|
|
LOCK TABLES `clip` WRITE;
|
|
/*!40000 ALTER TABLE `clip` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `clip` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `item`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `item`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `item` (
|
|
`id` int(10) unsigned DEFAULT NULL,
|
|
`clip_id` int(10) unsigned DEFAULT NULL,
|
|
`tag_id` int(10) unsigned DEFAULT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `item`
|
|
--
|
|
|
|
LOCK TABLES `item` WRITE;
|
|
/*!40000 ALTER TABLE `item` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `item` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `source`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `source`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `source` (
|
|
`id` int(10) unsigned DEFAULT NULL,
|
|
`path` text DEFAULT NULL,
|
|
`type` smallint(1) unsigned DEFAULT NULL,
|
|
`name` tinytext DEFAULT NULL,
|
|
`description` text DEFAULT NULL,
|
|
`season` tinytext DEFAULT NULL,
|
|
`episode` tinytext DEFAULT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `source`
|
|
--
|
|
|
|
LOCK TABLES `source` WRITE;
|
|
/*!40000 ALTER TABLE `source` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `source` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `tag`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `tag`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `tag` (
|
|
`id` int(10) unsigned DEFAULT NULL,
|
|
`name` varchar(255) DEFAULT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `tag`
|
|
--
|
|
|
|
LOCK TABLES `tag` WRITE;
|
|
/*!40000 ALTER TABLE `tag` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `tag` 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 2020-12-21 20:34:41
|