Bugfix: two movie commands instead of movie and tv

This commit is contained in:
purple_emily
2024-02-08 20:56:00 +00:00
parent 672a28bc6f
commit 8f16cb0424

View File

@@ -280,10 +280,10 @@ Don't worry, we can still correct this. We can retroactively update the categori
``` ```
# Update movie categories # Update movie categories
docker exec -it knightcrawler-postgres-1 psql -d knightcrawler -c "UPDATE ingested_torrents SET category='movies', processed='f' WHERE category LIKE 'movies_%';"``` docker exec -it knightcrawler-postgres-1 psql -d knightcrawler -c "UPDATE ingested_torrents SET category='movies', processed='f' WHERE category LIKE 'movies_%';"
# Update TV categories # Update TV categories
docker exec -it knightcrawler-postgres-1 psql -d knightcrawler -c "UPDATE ingested_torrents SET category='movies', processed='f' WHERE category LIKE 'movies_%';" docker exec -it knightcrawler-postgres-1 psql -d knightcrawler -c "UPDATE ingested_torrents SET category='tv', processed='f' WHERE category LIKE 'tv_%';"
``` ```
## Selfhostio to KnightCrawler Migration ## Selfhostio to KnightCrawler Migration