diff --git a/src/store/db/schema/album-artists.ts b/src/store/db/schema/album-artists.ts index 3fb593a..f30324d 100644 --- a/src/store/db/schema/album-artists.ts +++ b/src/store/db/schema/album-artists.ts @@ -1,5 +1,5 @@ import { sqliteTable, text, integer, index, primaryKey } from 'drizzle-orm/sqlite-core'; -import { sources } from '../db/schema/sources'; +import { sources } from './sources'; /** * Album-Artists relation table (many-to-many) diff --git a/src/store/db/schema/album-similar.ts b/src/store/db/schema/album-similar.ts index 05bfb68..62ee277 100644 --- a/src/store/db/schema/album-similar.ts +++ b/src/store/db/schema/album-similar.ts @@ -1,5 +1,5 @@ import { sqliteTable, text, primaryKey } from 'drizzle-orm/sqlite-core'; -import { sources } from '../db/schema/sources'; +import { sources } from './sources'; /** * Album-Similar relation table (for similar albums) diff --git a/src/store/db/schema/albums.ts b/src/store/db/schema/albums.ts index 5ddb077..bbcde65 100644 --- a/src/store/db/schema/albums.ts +++ b/src/store/db/schema/albums.ts @@ -1,5 +1,5 @@ import { sqliteTable, text, integer, index } from 'drizzle-orm/sqlite-core'; -import { sources } from '../db/schema/sources'; +import { sources } from './sources'; /** * Albums table diff --git a/src/store/db/schema/artists.ts b/src/store/db/schema/artists.ts index 1bba5cb..b4bc0e1 100644 --- a/src/store/db/schema/artists.ts +++ b/src/store/db/schema/artists.ts @@ -1,5 +1,5 @@ import { sqliteTable, text, integer, index } from 'drizzle-orm/sqlite-core'; -import { sources } from '../db/schema/sources'; +import { sources } from './sources'; /** * Artists table diff --git a/src/store/db/schema/downloads.ts b/src/store/db/schema/downloads.ts index 1bb5497..acd77af 100644 --- a/src/store/db/schema/downloads.ts +++ b/src/store/db/schema/downloads.ts @@ -1,5 +1,5 @@ import { sqliteTable, text, integer } from 'drizzle-orm/sqlite-core'; -import { sources } from '../db/schema/sources'; +import { sources } from './sources'; /** * Downloads table diff --git a/src/store/db/schema/playlist-tracks.ts b/src/store/db/schema/playlist-tracks.ts index 4a4dcc8..5026527 100644 --- a/src/store/db/schema/playlist-tracks.ts +++ b/src/store/db/schema/playlist-tracks.ts @@ -1,5 +1,5 @@ import { sqliteTable, text, integer, index, primaryKey } from 'drizzle-orm/sqlite-core'; -import { sources } from '../db/schema/sources'; +import { sources } from './sources'; /** * Playlist-Tracks relation table (many-to-many with position) diff --git a/src/store/db/schema/playlists.ts b/src/store/db/schema/playlists.ts index c5c7521..a3b07e9 100644 --- a/src/store/db/schema/playlists.ts +++ b/src/store/db/schema/playlists.ts @@ -1,5 +1,5 @@ import { sqliteTable, text, integer, index } from 'drizzle-orm/sqlite-core'; -import { sources } from '../db/schema/sources'; +import { sources } from './sources'; /** * Playlists table diff --git a/src/store/db/schema/search-queries.ts b/src/store/db/schema/search-queries.ts index 511da56..7fe62f8 100644 --- a/src/store/db/schema/search-queries.ts +++ b/src/store/db/schema/search-queries.ts @@ -1,5 +1,5 @@ import { sqliteTable, text, integer, index } from 'drizzle-orm/sqlite-core'; -import { sources } from '../db/schema/sources'; +import { sources } from './sources'; /** * Search queries table diff --git a/src/store/db/schema/sync-cursors.ts b/src/store/db/schema/sync-cursors.ts index 3e35f50..45d26ba 100644 --- a/src/store/db/schema/sync-cursors.ts +++ b/src/store/db/schema/sync-cursors.ts @@ -1,5 +1,5 @@ import { sqliteTable, text, integer, primaryKey } from 'drizzle-orm/sqlite-core'; -import { sources } from '../db/schema/sources'; +import { sources } from './sources'; /** * Sync cursors table - tracks prefill progress diff --git a/src/store/db/schema/track-artists.ts b/src/store/db/schema/track-artists.ts index b8cf734..d3ebb6a 100644 --- a/src/store/db/schema/track-artists.ts +++ b/src/store/db/schema/track-artists.ts @@ -1,5 +1,5 @@ import { sqliteTable, text, integer, index, primaryKey } from 'drizzle-orm/sqlite-core'; -import { sources } from '../db/schema/sources'; +import { sources } from './sources'; /** * Track-Artists relation table (many-to-many) diff --git a/src/store/db/schema/tracks.ts b/src/store/db/schema/tracks.ts index 7f7d8b7..8957a2d 100644 --- a/src/store/db/schema/tracks.ts +++ b/src/store/db/schema/tracks.ts @@ -1,5 +1,5 @@ import { sqliteTable, text, integer, index } from 'drizzle-orm/sqlite-core'; -import { sources } from '../db/schema/sources'; +import { sources } from './sources'; /** * Tracks table