Drop info field/column from Artist

This commit is contained in:
vfsfitvnm
2022-10-14 16:17:44 +02:00
parent 214136a13e
commit 25fd43b98d
5 changed files with 647 additions and 7 deletions

View File

@@ -10,7 +10,6 @@ data class Artist(
@PrimaryKey val id: String,
val name: String? = null,
val thumbnailUrl: String? = null,
val info: String? = null,
val timestamp: Long? = null,
val bookmarkedAt: Long? = null,
)