
DROP TABLE spots ;

CREATE TABLE spots (
    dxcall		text,
    FreqRX		text,
    FreqQSX		text,
    SpotTS		timestamp, 
    dxband		text,
    dxcountry		text,
    dxstat		text,
    dxmode		text,
    radiomode		text
);


CREATE INDEX sp_id ON spots (FreqRX) ;
CREATE INDEX ba_id ON spots (dxband) ;

VACUUM ;

GRANT ALL PRIVILEGES ON TABLE spots TO PUBLIC ;

ANALYZE VERBOSE spots ;
