Store source track index in track

This commit is contained in:
Elias Projahn 2021-04-15 18:19:17 +02:00
parent 622f1312fb
commit d410be75dc
6 changed files with 15 additions and 4 deletions

View file

@ -66,6 +66,7 @@ CREATE TABLE "tracks" (
"index" INTEGER NOT NULL,
"recording" TEXT NOT NULL REFERENCES "recordings"("id"),
"work_parts" TEXT NOT NULL,
"source_index" INTEGER NOT NULL,
"path" TEXT NOT NULL
);