mirror of https://github.com/morpheus65535/bazarr
Merge branch 'development' into python3
This commit is contained in:
commit
b34f2d44cf
|
@ -51,12 +51,12 @@ class TableShows(BaseModel):
|
||||||
hearing_impaired = TextField(null=True)
|
hearing_impaired = TextField(null=True)
|
||||||
languages = TextField(null=True)
|
languages = TextField(null=True)
|
||||||
overview = TextField(null=True)
|
overview = TextField(null=True)
|
||||||
path = TextField(unique=True)
|
path = TextField(null=False, unique=True)
|
||||||
poster = TextField(null=True)
|
poster = TextField(null=True)
|
||||||
sonarr_series_id = IntegerField(column_name='sonarrSeriesId', unique=True)
|
sonarr_series_id = IntegerField(column_name='sonarrSeriesId', null=True, unique=True)
|
||||||
sort_title = TextField(column_name='sortTitle', null=True)
|
sort_title = TextField(column_name='sortTitle', null=True)
|
||||||
title = TextField()
|
title = TextField(null=True)
|
||||||
tvdb_id = AutoField(column_name='tvdbId')
|
tvdb_id = IntegerField(column_name='tvdbId', null=True, unique=True, primary_key=True)
|
||||||
year = TextField(null=True)
|
year = TextField(null=True)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
|
@ -65,19 +65,19 @@ class TableShows(BaseModel):
|
||||||
|
|
||||||
class TableEpisodes(BaseModel):
|
class TableEpisodes(BaseModel):
|
||||||
audio_codec = TextField(null=True)
|
audio_codec = TextField(null=True)
|
||||||
episode = IntegerField()
|
episode = IntegerField(null=False)
|
||||||
failed_attempts = TextField(column_name='failedAttempts', null=True)
|
failed_attempts = TextField(column_name='failedAttempts', null=True)
|
||||||
format = TextField(null=True)
|
format = TextField(null=True)
|
||||||
missing_subtitles = TextField(null=True)
|
missing_subtitles = TextField(null=True)
|
||||||
monitored = TextField(null=True)
|
monitored = TextField(null=True)
|
||||||
path = TextField()
|
path = TextField(null=False)
|
||||||
resolution = TextField(null=True)
|
resolution = TextField(null=True)
|
||||||
scene_name = TextField(null=True)
|
scene_name = TextField(null=True)
|
||||||
season = IntegerField()
|
season = IntegerField(null=False)
|
||||||
sonarr_episode_id = IntegerField(column_name='sonarrEpisodeId', unique=True)
|
sonarr_episode_id = IntegerField(column_name='sonarrEpisodeId', unique=True, null=False)
|
||||||
sonarr_series_id = ForeignKeyField(TableShows, field='sonarr_series_id', column_name='sonarrSeriesId')
|
sonarr_series_id = ForeignKeyField(TableShows, field='sonarr_series_id', column_name='sonarrSeriesId', null=False)
|
||||||
subtitles = TextField(null=True)
|
subtitles = TextField(null=True)
|
||||||
title = TextField()
|
title = TextField(null=True)
|
||||||
video_codec = TextField(null=True)
|
video_codec = TextField(null=True)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
|
@ -101,13 +101,13 @@ class TableMovies(BaseModel):
|
||||||
overview = TextField(null=True)
|
overview = TextField(null=True)
|
||||||
path = TextField(unique=True)
|
path = TextField(unique=True)
|
||||||
poster = TextField(null=True)
|
poster = TextField(null=True)
|
||||||
radarr_id = IntegerField(column_name='radarrId', unique=True)
|
radarr_id = IntegerField(column_name='radarrId', null=False, unique=True)
|
||||||
resolution = TextField(null=True)
|
resolution = TextField(null=True)
|
||||||
scene_name = TextField(column_name='sceneName', null=True)
|
scene_name = TextField(column_name='sceneName', null=True)
|
||||||
sort_title = TextField(column_name='sortTitle', null=True)
|
sort_title = TextField(column_name='sortTitle', null=True)
|
||||||
subtitles = TextField(null=True)
|
subtitles = TextField(null=True)
|
||||||
title = TextField()
|
title = TextField(null=False)
|
||||||
tmdb_id = TextField(column_name='tmdbId', primary_key=True)
|
tmdb_id = TextField(column_name='tmdbId', primary_key=True, null=False)
|
||||||
video_codec = TextField(null=True)
|
video_codec = TextField(null=True)
|
||||||
year = TextField(null=True)
|
year = TextField(null=True)
|
||||||
|
|
||||||
|
@ -116,52 +116,50 @@ class TableMovies(BaseModel):
|
||||||
|
|
||||||
|
|
||||||
class TableHistory(BaseModel):
|
class TableHistory(BaseModel):
|
||||||
id = IntegerField(null=False)
|
id = PrimaryKeyField(null=False)
|
||||||
action = IntegerField()
|
action = IntegerField(null=False)
|
||||||
description = TextField()
|
description = TextField(null=False)
|
||||||
language = TextField(null=True)
|
language = TextField(null=True)
|
||||||
provider = TextField(null=True)
|
provider = TextField(null=True)
|
||||||
score = TextField(null=True)
|
score = TextField(null=True)
|
||||||
sonarr_episode_id = ForeignKeyField(TableEpisodes, field='sonarr_episode_id', column_name='sonarrEpisodeId')
|
sonarr_episode_id = ForeignKeyField(TableEpisodes, field='sonarr_episode_id', column_name='sonarrEpisodeId', null=False, unique=True)
|
||||||
sonarr_series_id = ForeignKeyField(TableShows, field='sonarr_series_id', column_name='sonarrSeriesId')
|
sonarr_series_id = ForeignKeyField(TableShows, field='sonarr_series_id', column_name='sonarrSeriesId', null=False)
|
||||||
timestamp = IntegerField()
|
timestamp = IntegerField(null=False)
|
||||||
video_path = TextField(null=True)
|
video_path = TextField(null=True)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
table_name = 'table_history'
|
table_name = 'table_history'
|
||||||
primary_key = False
|
|
||||||
|
|
||||||
|
|
||||||
class TableHistoryMovie(BaseModel):
|
class TableHistoryMovie(BaseModel):
|
||||||
id = IntegerField(null=False)
|
id = PrimaryKeyField(null=False)
|
||||||
action = IntegerField()
|
action = IntegerField(null=False)
|
||||||
description = TextField()
|
description = TextField(null=False)
|
||||||
language = TextField(null=True)
|
language = TextField(null=True)
|
||||||
provider = TextField(null=True)
|
provider = TextField(null=True)
|
||||||
radarr_id = ForeignKeyField(TableMovies, field='radarr_id', column_name='radarrId')
|
radarr_id = ForeignKeyField(TableMovies, field='radarr_id', column_name='radarrId')
|
||||||
score = TextField(null=True)
|
score = TextField(null=True)
|
||||||
timestamp = IntegerField()
|
timestamp = IntegerField(null=False)
|
||||||
video_path = TextField(null=True)
|
video_path = TextField(null=True)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
table_name = 'table_history_movie'
|
table_name = 'table_history_movie'
|
||||||
primary_key = False
|
|
||||||
|
|
||||||
|
|
||||||
class TableSettingsLanguages(BaseModel):
|
class TableSettingsLanguages(BaseModel):
|
||||||
code2 = TextField(null=True)
|
code2 = TextField(null=False)
|
||||||
code3 = TextField(primary_key=True)
|
code3 = TextField(null=False, unique=True, primary_key=True)
|
||||||
code3b = TextField(null=True)
|
code3b = TextField(null=True)
|
||||||
enabled = IntegerField(null=True)
|
enabled = IntegerField(null=True)
|
||||||
name = TextField()
|
name = TextField(null=False)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
table_name = 'table_settings_languages'
|
table_name = 'table_settings_languages'
|
||||||
|
|
||||||
|
|
||||||
class TableSettingsNotifier(BaseModel):
|
class TableSettingsNotifier(BaseModel):
|
||||||
enabled = IntegerField(null=True)
|
enabled = IntegerField(null=False)
|
||||||
name = TextField(null=True, primary_key=True)
|
name = TextField(null=False, primary_key=True)
|
||||||
url = TextField(null=True)
|
url = TextField(null=True)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
|
|
Loading…
Reference in New Issue