knightcrawler-stremio / knightcrawler

A selfhosted Stremio addon
Apache License 2.0
238 stars 39 forks source link

Add psql command for inserting non-exact movies and tv categories #81

Closed FunkeCoder23 closed 5 months ago

FunkeCoder23 commented 5 months ago

Closes# #80

NebKi commented 5 months ago

I would add something for the people that already imported the database and need to convert that. They can use the following SQL commands:

UPDATE ingested_torrents SET category='movies', processed='f' WHERE category LIKE 'movies_%';

UPDATE ingested_torrents SET category='tv', processed='f' WHERE category LIKE 'tv_%';