Add index on label

This commit is contained in:
Brendan Abolivier 2019-10-30 15:58:05 +00:00
parent acd16ad86a
commit 233b14ebe1
No known key found for this signature in database
GPG Key ID: 1E015C145F1916CD

View File

@ -18,3 +18,5 @@ CREATE TABLE IF NOT EXISTS event_labels (
label TEXT,
PRIMARY KEY(event_id, label)
);
CREATE INDEX event_labels_label_idx ON event_labels(label);