Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/add_data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ INSERT INTO musicbrainz.editor (id, name, password, email, email_confirm_date, h
VALUES (1, 'kuno', 'topsecret', 'kuno@kunoenterprises.ltd', now(), '');

INSERT INTO musicbrainz.edit (id, editor, type, status, expire_time)
-- FIXME: replace 9999 with the "add event artwork" edit type ID, once that's known.
VALUES (1, 1, 314, 2, now()), (2, 1, 9999, 2, now());
-- edit type 314 = EDIT_COVER_ART_ADD, 158 = EDIT_EVENT_ADD_EVENT_ART
VALUES (1, 1, 314, 2, now()), (2, 1, 158, 2, now());
INSERT INTO musicbrainz.edit_data (edit, data)
VALUES (1, '{"foo":"bar"}'), (2, '{"foo":"bar"}');

Expand Down