diff --git a/src/NzbDrone.Core/Datastore/Migration/032_postgres_update_timestamp_columns_to_with_timezone_part2.cs b/src/NzbDrone.Core/Datastore/Migration/032_postgres_update_timestamp_columns_to_with_timezone_part2.cs new file mode 100644 index 000000000..72e16082e --- /dev/null +++ b/src/NzbDrone.Core/Datastore/Migration/032_postgres_update_timestamp_columns_to_with_timezone_part2.cs @@ -0,0 +1,15 @@ +using FluentMigrator; +using NzbDrone.Core.Datastore.Migration.Framework; + +namespace NzbDrone.Core.Datastore.Migration +{ + [Migration(032)] + public class postgres_update_timestamp_columns_to_with_timezone_part2 : NzbDroneMigrationBase + { + protected override void MainDbUpgrade() + { + Alter.Table("DownloadHistory").AlterColumn("Date").AsDateTimeOffset().Nullable(); + Alter.Table("ImportListStatus").AlterColumn("LastInfoSync").AsDateTimeOffset().Nullable(); + } + } +}