]> git.ktnx.net Git - mpd-feeder.git/commitdiff
rename unwanted artist/album tables
authorDamyan Ivanov <dmn@debian.org>
Thu, 11 Nov 2021 12:35:37 +0000 (12:35 +0000)
committerDamyan Ivanov <dmn@debian.org>
Thu, 11 Nov 2021 12:35:37 +0000 (12:35 +0000)
bin/mpd-feeder
sql/pgsql/init.sql

index 939765417c8939be8c0020522ef58c74c80d52ed..be0fc2c073b7e2c0ba466442b535d05afa87dbbe 100755 (executable)
@@ -293,8 +293,8 @@ JOIN albums al ON al.album=s.album
 WHERE (s.last_queued IS NULL OR s.last_queued < CURRENT_TIMESTAMP - (? || ' seconds')::interval)
   AND (ar.last_queued IS NULL OR ar.last_queued < CURRENT_TIMESTAMP - (? || ' seconds')::interval)
   AND (al.last_queued IS NULL OR al.last_queued < CURRENT_TIMESTAMP - (? || ' seconds')::interval)
-  AND NOT EXISTS (SELECT 1 FROM blacklisted_artists bar WHERE bar.artist = s.artist)
-  AND NOT EXISTS (SELECT 1 FROM blacklisted_albums  bal WHERE bal.album  = s.album)
+  AND NOT EXISTS (SELECT 1 FROM unwanted_artists uar WHERE uar.artist = s.artist)
+  AND NOT EXISTS (SELECT 1 FROM unwanted_albums  ual WHERE ual.album  = s.album)
 ORDER BY random()
 LIMIT ?
 SQL
index 74598fd3d7242740bd98d333502a8ebc769dfaea..8cdce3d7c593c12ace119eb99815c89bfae85ebf 100644 (file)
@@ -22,13 +22,13 @@ create table artists(
     last_queued timestamp with time zone,
     generation bigint not null);
 
-create table blacklisted_albums(
+create table unwanted_albums(
     artist text not null,
     album text not null,
     generation bigint not null,
     primary key(album,artist));
 
-create table blacklisted_artists(
+create table unwanted_artists(
     artist text not null primary key,
     generation bigint not null
 );