From 88fc2bdff97c0694a752002d610b2f77ca935236 Mon Sep 17 00:00:00 2001 From: Edgars Supe Date: Wed, 8 Sep 2021 10:45:31 +0300 Subject: [PATCH] Add `albumtypes` to Album schema --- beets/library.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/beets/library.py b/beets/library.py index 54ff7eae9..302c8d37a 100644 --- a/beets/library.py +++ b/beets/library.py @@ -1042,6 +1042,7 @@ class Album(LibModel): 'mb_albumid': types.STRING, 'mb_albumartistid': types.STRING, 'albumtype': types.STRING, + 'albumtypes': types.STRING, 'label': types.STRING, 'mb_releasegroupid': types.STRING, 'asin': types.STRING, @@ -1091,6 +1092,7 @@ class Album(LibModel): 'mb_albumid', 'mb_albumartistid', 'albumtype', + 'albumtypes', 'label', 'mb_releasegroupid', 'asin',