Update 'playlists'

Anna Schumaker 2023-03-21 17:01:34 -04:00
parent c989adc69c
commit d5c4322559
1 changed files with 6 additions and 6 deletions

@ -1,12 +1,12 @@
The `playlists` table holds information for user and system playlists. The `playlists_view` joins the `playlists` table with the [[playlist_properties]] table so the application can use one query to access all the relevant state for each playlist.
### Columns
| Name | Type | Description |
| --------------------------------- | -------- | --------------------------------------------- |
| playlistid | INTEGER | The unique id of a singe playlist |
| [propertyid](playlist_properties) | INTEGER | The rowid of this playlist's properties |
| name | TEXT | The name of this playlist |
| image | [[PATH]] | The filepath of an image to display in the UI |
| Name | Type | Description |
| --------------------------------- | --------------------- | --------------------------------------------- |
| playlistid | INTEGER | The unique id of a singe playlist |
| [propertyid](playlist_properties) | INTEGER | The rowid of this playlist's properties |
| name | TEXT | The name of this playlist |
| image | [PATH](SQLite-Config) | The filepath of an image to display in the UI |
### Triggers
| Name | When | Description |