mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-20 05:13:21 -07:00
Add file size to export table
This commit is contained in:
parent
a27a5b023b
commit
40fbc55ab3
4 changed files with 39 additions and 22 deletions
|
@ -794,7 +794,7 @@ def dbcheck():
|
|||
c_db.execute(
|
||||
'CREATE TABLE IF NOT EXISTS exports (id INTEGER PRIMARY KEY AUTOINCREMENT, '
|
||||
'timestamp INTEGER, section_id INTEGER, rating_key INTEGER, media_type TEXT, '
|
||||
'file_format TEXT, filename TEXT, complete INTEGER DEFAULT 0)'
|
||||
'filename TEXT, file_format TEXT, file_size INTEGER DEFAULT 0, complete INTEGER DEFAULT 0)'
|
||||
)
|
||||
|
||||
# Upgrade sessions table from earlier versions
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue