diff --git a/couchpotato/model.py b/couchpotato/model.py index 98800983..c0b1ee87 100644 --- a/couchpotato/model.py +++ b/couchpotato/model.py @@ -23,6 +23,8 @@ class Release(Entity): """Logically groups all files that belong to a certain release, such as parts of a movie, subtitles, nfo, trailers etc.""" files = OneToMany('File') + mooli_id = Field(Integer) + resource = ManyToOne('Resource') class File(Entity):