icarus_models version bump #210

Merged
kdeng00 merged 15 commits from icarus_models-ver_bump into main 2025-10-20 11:19:06 -04:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit d75d9c3f58 - Show all commits
+2 -1
View File
@@ -56,7 +56,8 @@ CREATE TABLE IF NOT EXISTS "coverart" (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(), id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
title TEXT NOT NULL, title TEXT NOT NULL,
-- TODO: Separate path later -- TODO: Separate path later
path TEXT NOT NULL, directory TEXT NOT NULL,
filename TEXT NOT NULL,
song_id UUID NOT NULL song_id UUID NOT NULL
-- TODO: Add type later -- TODO: Add type later
); );
+2 -1
View File
@@ -53,6 +53,7 @@ CREATE TABLE IF NOT EXISTS "song" (
CREATE TABLE IF NOT EXISTS "coverart" ( CREATE TABLE IF NOT EXISTS "coverart" (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(), id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
title TEXT NOT NULL, title TEXT NOT NULL,
path TEXT NOT NULL, directory TEXT NOT NULL,
filename TEXT NOT NULL,
song_id UUID NOT NULL song_id UUID NOT NULL
); );