-- +goose Up -- SQL in section 'Up' is executed when this migration is applied CREATE TABLE love ( id serial PRIMARY KEY, time timestamptz, artist text, name text, mbid text, session text REFERENCES scrobbling_sessions(session_key), "user" int REFERENCES users(user_id) ); CREATE TABLE love_import ( lfm_name text, time timestamptz DEFAULT NOW(), "count" int ); -- +goose Down -- SQL section 'Down' is executed when this migration is rolled back DROP TABLE love_import; DROP TABLE love;