mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
Add TvDbEpisodeId to Episode. now we can index episodes before they showup in thetvdb
This commit is contained in:
parent
be74c67df8
commit
3beeff4e18
4 changed files with 232 additions and 309 deletions
|
@ -7,9 +7,11 @@ namespace NzbDrone.Core.Repository
|
|||
{
|
||||
public class Episode
|
||||
{
|
||||
[SubSonicPrimaryKey(false)]
|
||||
[SubSonicPrimaryKey]
|
||||
public virtual int EpisodeId { get; set; }
|
||||
|
||||
public int? TvDbEpisodeId { get; set; }
|
||||
|
||||
public virtual int SeriesId { get; set; }
|
||||
public virtual int EpisodeFileId { get; set; }
|
||||
public virtual int SeasonId { get; set; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue