From 1b581aa4ba619212628049fecabc36868c5aee2e Mon Sep 17 00:00:00 2001 From: Yottatron <54516274+ShaneBridges1234@users.noreply.github.com> Date: Mon, 1 Jan 2024 09:16:04 -0800 Subject: [PATCH] Update other-database-backends.md Correct table new in SQL for MariaDB column compression. --- docs/other-database-backends.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/other-database-backends.md b/docs/other-database-backends.md index 3ac61e4..4f90d3a 100644 --- a/docs/other-database-backends.md +++ b/docs/other-database-backends.md @@ -84,7 +84,7 @@ With a lot of media files the `sync_media` table grows in size quickly. You can save space using column compression using the following steps while using MariaDB: 1. Stop tubesync - 2. Execute `ALTER TABLE sync_source MODIFY metadata LONGTEXT COMPRESSED;` on database tubesync + 2. Execute `ALTER TABLE sync_media MODIFY metadata LONGTEXT COMPRESSED;` on database tubesync 3. Start tunesync and confirm the connection still works. ## Docker Compose