The table is:
Code:
CREATE TABLE download
(
id integer NOT NULL DEFAULT nextval('seq'::regclass),
songid integer NOT NULL,
counter integer NOT NULL,
weeknumber integer NOT NULL,
CONSTRAINT download_pkey PRIMARY KEY (id ),
CONSTRAINT download_songid_fkey FOREIGN KEY (songid)