Update 'genres'

Anna Schumaker 2023-05-10 13:26:09 -04:00
parent 0861617574
commit 4205fd6fa5
1 changed files with 10 additions and 6 deletions

@ -16,9 +16,13 @@ The `genres` table holds information for genre playlists.
### The `genres_view`
The `genres_view` joins the `genres` table with the [[playlist_properties]] table so the application can use one query to access all the relevant state for each genre.
| Column | Description |
| --------------------------------- | ------------------------------------------------------- |
| genreid | The genreid of this genre |
| [propertyid](playlist_properties) | The rowid of the [[playlist_properties]] for this genre |
| name | The name of this genre |
| [active](playlist_properties) | The active state of this genre |
| Column | Description |
| -------------------------------------- | ------------------------------------------------------- |
| genreid | The genreid of this genre |
| [propertyid](playlist_properties) | The rowid of the [[playlist_properties]] for this genre |
| name | The name of this genre |
| [active](playlist_properties) | The active state of this genre |
| [loop](playlist_properties) | The loop state of this genre |
| [shuffle](playlist_properties) | The shuffle state of this genre |
| [sort_order](playlist_properties) | The sort order of this genre |
| [current_trackid](playlist_properties) | The current trackid of this genre |