db/events: rework tags, make event_id a FK to events again, drop value_2 and value_3

This commit is contained in:
Alex Gleason
2023-09-05 16:11:38 -05:00
parent 4708839fd6
commit 2ff40c8fc5
3 changed files with 79 additions and 24 deletions

View File

@@ -29,9 +29,7 @@ interface EventFTSRow {
interface TagRow {
tag: string;
value_1: string | null;
value_2: string | null;
value_3: string | null;
value: string;
event_id: string;
}