You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE IF NOT EXISTS downloads (id INTEGER PRIMARY KEY, Download_date INTEGER NOT NULL, Link TEXT NOT NULL, Title TEXT, Author TEXT, album_id INTEGER, FOREIGN KEY(album_id) REFERENCES allbums(id))
CREATE TABLE IF NOT EXISTS albums (id INTEGER PRIMARY KEY, Download_date INTEGER NOT NULL , Link TEXT, Title TEXT, Author TEXT, Length INTEGER)