Files
tunarr/server/src/migration/db/sql/0014_gray_mongu.sql
Christian Benincasa a748408fcc feat!: implement local media libraries (#1406)
Initial implementation of local media libraries. Includes local scanners
for movie and TV library types. Saves extracted metadata locally.

Some things are missing, including:
* Saving all metadata locally, including genres, actors, etc.
* blurhash extraction - this is computationally expensive at scale and
  should be done async
* Hooking up subtitle extraction to new subtitle DB tables
2025-10-14 16:41:58 -04:00

3 lines
230 B
SQL

ALTER TABLE `local_media_folder` ADD `canonical_id` text NOT NULL;--> statement-breakpoint
ALTER TABLE `media_source` ADD `media_type` text;--> statement-breakpoint
ALTER TABLE `local_media_source_path` DROP COLUMN `canonical_id`;