mirror of
https://github.com/Radarr/Radarr
synced 2024-12-27 02:09:59 +00:00
Fixes issue with History table not having a movie id field.
This commit is contained in:
parent
ad95fbfd4a
commit
6d23fb1b61
1 changed files with 2 additions and 1 deletions
|
@ -17,7 +17,8 @@ protected override void MainDbUpgrade()
|
||||||
.WithColumn("SourceTitle").AsString()
|
.WithColumn("SourceTitle").AsString()
|
||||||
.WithColumn("Date").AsDateTime()
|
.WithColumn("Date").AsDateTime()
|
||||||
.WithColumn("Quality").AsString()
|
.WithColumn("Quality").AsString()
|
||||||
.WithColumn("Data").AsString();
|
.WithColumn("Data").AsString()
|
||||||
|
.WithColumn("MovieId").AsInt32().WithDefaultValue(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue