]> git.ktnx.net Git - mpd-feeder.git/blobdiff - sql/pgsql/init.sql
rename unwanted artist/album tables
[mpd-feeder.git] / sql / pgsql / init.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
 );