-
Notifications
You must be signed in to change notification settings - Fork 1
/
backup_banco.sql
101 lines (80 loc) · 3.59 KB
/
backup_banco.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
SQLyog Ultimate v12.4.1 (64 bit)
MySQL - 5.7.30-log : Database - manga_extractor
*********************************************************************
*/
/*!40101 SET NAMES utf8 */;
/*!40101 SET SQL_MODE=''*/;
/*!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 DATABASE /*!32312 IF NOT EXISTS*/`manga_extractor` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `manga_extractor`;
/*Table structure for table `exemplo_capitulos` */
DROP TABLE IF EXISTS `exemplo_capitulos`;
CREATE TABLE `exemplo_capitulos` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_volume` int(11) DEFAULT NULL,
`manga` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`volume` int(4) NOT NULL,
`capitulo` double NOT NULL,
`linguagem` varchar(4) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`scan` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_extra` tinyint(1) DEFAULT NULL,
`is_raw` tinyint(1) DEFAULT NULL,
`is_processado` tinyint(1) DEFAULT '0',
`vocabulario` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
KEY `exemplo_volumes_capitulos_fk` (`id_volume`),
CONSTRAINT `exemplo_volumes_capitulos_fk` FOREIGN KEY (`id_volume`) REFERENCES `exemplo_volumes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*Data for the table `exemplo_capitulos` */
/*Table structure for table `exemplo_paginas` */
DROP TABLE IF EXISTS `exemplo_paginas`;
CREATE TABLE `exemplo_paginas` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_capitulo` int(11) NOT NULL,
`nome` varchar(250) DEFAULT NULL,
`numero` int(11) DEFAULT NULL,
`hash_pagina` varchar(250) DEFAULT NULL,
`is_processado` tinyint(1) DEFAULT '0',
`vocabulario` longtext,
PRIMARY KEY (`id`),
KEY `exemplo_capitulos_paginas_fk` (`id_capitulo`),
CONSTRAINT `exemplo_capitulos_paginas_fk` FOREIGN KEY (`id_capitulo`) REFERENCES `exemplo_capitulos` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*Data for the table `exemplo_paginas` */
/*Table structure for table `exemplo_textos` */
DROP TABLE IF EXISTS `exemplo_textos`;
CREATE TABLE `exemplo_textos` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_pagina` int(11) NOT NULL,
`sequencia` int(4) DEFAULT NULL,
`texto` longtext COLLATE utf8mb4_unicode_ci,
`posicao_x1` double DEFAULT NULL,
`posicao_y1` double DEFAULT NULL,
`posicao_x2` double DEFAULT NULL,
`posicao_y2` double DEFAULT NULL,
`versaoApp` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `exemplo_volumes_exemplo_textos_fk` (`id_pagina`),
CONSTRAINT `exemplo_paginas_textos_fk` FOREIGN KEY (`id_pagina`) REFERENCES `exemplo_paginas` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*Data for the table `exemplo_textos` */
/*Table structure for table `exemplo_volumes` */
DROP TABLE IF EXISTS `exemplo_volumes`;
CREATE TABLE `exemplo_volumes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`manga` varchar(250) DEFAULT NULL,
`volume` int(4) DEFAULT NULL,
`linguagem` varchar(4) DEFAULT NULL,
`vocabulario` longtext,
`is_processado` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*Data for the table `exemplo_volumes` */
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;