X-Git-Url: https://git.ktnx.net/?a=blobdiff_plain;f=sql%2Fpgsql%2Finit.sql;h=8cdce3d7c593c12ace119eb99815c89bfae85ebf;hb=744b004c547dab563ead08fa0da87dabf6e537e9;hp=74598fd3d7242740bd98d333502a8ebc769dfaea;hpb=5a923e4b6285a2c19ce472d3baafb21a243eda25;p=mpd-feeder.git diff --git a/sql/pgsql/init.sql b/sql/pgsql/init.sql index 74598fd..8cdce3d 100644 --- a/sql/pgsql/init.sql +++ b/sql/pgsql/init.sql @@ -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 );