From 692ce07f43177e62806f4e27e5d464609a460649 Mon Sep 17 00:00:00 2001 From: saintly2k Date: Sun, 31 Oct 2021 23:03:46 +0100 Subject: [PATCH] proper sql dump --- foolslidex.sql | 108 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 foolslidex.sql diff --git a/foolslidex.sql b/foolslidex.sql new file mode 100644 index 0000000..c666568 --- /dev/null +++ b/foolslidex.sql @@ -0,0 +1,108 @@ +-- phpMyAdmin SQL Dump +-- version 5.1.1 +-- https://www.phpmyadmin.net/ +-- +-- Host: 127.0.0.1 +-- Generation Time: Oct 31, 2021 at 11:03 PM +-- Server version: 10.4.21-MariaDB +-- PHP Version: 7.3.31 + +SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; +START TRANSACTION; +SET time_zone = "+00:00"; + + +/*!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 */; + +-- +-- Database: `foolslidex` +-- + +-- -------------------------------------------------------- + +-- +-- Table structure for table `chapters` +-- + +CREATE TABLE `chapters` ( + `id` int(11) NOT NULL, + `manga` int(11) NOT NULL, + `url` varchar(25) NOT NULL, + `title` varchar(100) NOT NULL, + `chapter` int(4) NOT NULL, + `images` varchar(25) NOT NULL, + `date` timestamp NOT NULL DEFAULT current_timestamp() +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Dumping data for table `chapters` +-- + +INSERT INTO `chapters` (`id`, `manga`, `url`, `title`, `chapter`, `images`, `date`) VALUES +(1, 1, 'JQub2-mlkad-I9gFd-WuIoX', 'Unfit to be a dog', 10, '12345-12435-12345-12345', '2021-10-29 22:24:02'), +(2, 1, 'JQub2-mlkcd-wafRT-WuIoX', 'An inquiry', 11, '23456-23456-23456-23456', '2021-10-29 22:25:44'), +(3, 2, 'jUwir-fOsIf-sxCmv-sWfdS', 'No Title', 1, '64732-74859-28745-27843', '2021-10-31 20:34:29'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `mangas` +-- + +CREATE TABLE `mangas` ( + `id` int(11) NOT NULL, + `title` varchar(100) NOT NULL, + `cover` varchar(25) NOT NULL, + `alternates` varchar(250) DEFAULT NULL, + `scanlating` tinyint(1) NOT NULL DEFAULT 1, + `url` varchar(25) NOT NULL, + `description` varchar(1000) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Dumping data for table `mangas` +-- + +INSERT INTO `mangas` (`id`, `title`, `cover`, `alternates`, `scanlating`, `url`, `description`) VALUES +(1, 'Pochi Gokko', 'sHiVdShXIrIu8al.jpeg', NULL, 1, 'JQub2-mlkcd-I9gFd-W6ziC', 'A promising romcom from Weekly Young Jump, the first taste of fluff in the Reiwa era.\nOne day, the protagonist Tomoyori decides to end his own life.\nBut that was not the end - as his eyes opened, he found himself in a strange room.\nTurns out, he\'s now the pet of a mysterious high school girl. Yes, you heard that right.\nInteracting with a high school girl? Could this be a gift from the heavens? Or is it divine punishment?\nA new era, a new beginning!'), +(2, 'A Kind World', 'xgobB4cWZyVRXYF.png', '', 1, 'JlSYX-ZbOiN-kwhfh-BYhzw', ''); + +-- +-- Indexes for dumped tables +-- + +-- +-- Indexes for table `chapters` +-- +ALTER TABLE `chapters` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `mangas` +-- +ALTER TABLE `mangas` + ADD PRIMARY KEY (`id`); + +-- +-- AUTO_INCREMENT for dumped tables +-- + +-- +-- AUTO_INCREMENT for table `chapters` +-- +ALTER TABLE `chapters` + MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; + +-- +-- AUTO_INCREMENT for table `mangas` +-- +ALTER TABLE `mangas` + MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; +COMMIT; + +/*!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 */;