aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/schema-mysql.sql
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2023-02-03 00:31:50 +0300
committerGravatar Vitaly Takmazov2023-02-03 03:39:43 +0300
commit17aa96df5776812e2b2fb212b071a821685c9598 (patch)
treefd26d5fc9a961d88d64bc5a8cab1669e5b6bd7d1 /src/main/resources/schema-mysql.sql
parented8f4b3397219c3e224504def022e5b3535c6773 (diff)
Drop unused tables
Diffstat (limited to 'src/main/resources/schema-mysql.sql')
-rw-r--r--src/main/resources/schema-mysql.sql32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/main/resources/schema-mysql.sql b/src/main/resources/schema-mysql.sql
index 0f6321fd..58192261 100644
--- a/src/main/resources/schema-mysql.sql
+++ b/src/main/resources/schema-mysql.sql
@@ -132,25 +132,6 @@ CREATE TABLE `followers` (
/*!40101 SET character_set_client = @saved_cs_client */;
--
--- Table structure for table `images`
---
-
-DROP TABLE IF EXISTS `images`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `images` (
- `mid` int(10) unsigned NOT NULL,
- `rid` int(10) unsigned NOT NULL,
- `thumb` int(10) unsigned NOT NULL,
- `small` int(10) unsigned NOT NULL,
- `medium` int(10) unsigned NOT NULL,
- `height` int(10) unsigned NOT NULL,
- `width` int(10) unsigned NOT NULL,
- PRIMARY KEY (`mid`,`rid`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
-- Table structure for table `jids`
--
@@ -539,19 +520,6 @@ CREATE TABLE `tags_ignore` (
/*!40101 SET character_set_client = @saved_cs_client */;
--
--- Table structure for table `tags_synonyms`
---
-
-DROP TABLE IF EXISTS `tags_synonyms`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `tags_synonyms` (
- `name` char(64) NOT NULL,
- `changeto` char(64) NOT NULL
-) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
-- Table structure for table `telegram`
--