Add TvDbEpisodeId to Episode. now we can index episodes before they showup in thetvdb

This commit is contained in:
kay.one
2011-04-23 13:33:24 -07:00
parent be74c67df8
commit 3beeff4e18
4 changed files with 232 additions and 309 deletions
+3 -1
View File
@@ -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; }