Track artist popularity
[brackets.git] / migrations / 004-create_scraped_artist.sql
1 CREATE TABLE SCRAPED_ARTIST (
2 ARTIST_ID TEXT UNIQUE NOT NULL,
3 SCRAPED BOOLEAN NOT NULL DEFAULT 0,
4 FOREIGN KEY(ARTIST_ID) REFERENCES ARTIST(ID)
5 );