Add season number and episode number to progressitem

This commit is contained in:
William Oldham
2023-11-05 15:13:09 +00:00
parent 53801f926a
commit 01c96babd4
4 changed files with 62 additions and 7 deletions

View File

@@ -184,6 +184,24 @@
"nullable": true,
"mappedType": "string"
},
"season_number": {
"name": "season_number",
"type": "int",
"unsigned": false,
"autoincrement": false,
"primary": false,
"nullable": true,
"mappedType": "integer"
},
"episode_number": {
"name": "episode_number",
"type": "int",
"unsigned": false,
"autoincrement": false,
"primary": false,
"nullable": true,
"mappedType": "integer"
},
"meta": {
"name": "meta",
"type": "jsonb",