From 3e16eb736bb247f5d83505d95fa3913d3656ea6b Mon Sep 17 00:00:00 2001 From: Stevie Robinson Date: Fri, 19 Jan 2024 06:42:31 +0100 Subject: [PATCH] New: Drop commands table content before postgres migration Signed-off-by: Stevie Robinson (cherry picked from commit 8dd3b45c90209136c0bd0a861061c6d20837d62f) Closes #4475 --- .../061_postgres_update_timestamp_columns_to_with_timezone.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/NzbDrone.Core/Datastore/Migration/061_postgres_update_timestamp_columns_to_with_timezone.cs b/src/NzbDrone.Core/Datastore/Migration/061_postgres_update_timestamp_columns_to_with_timezone.cs index 8dceff17e..c6567345c 100644 --- a/src/NzbDrone.Core/Datastore/Migration/061_postgres_update_timestamp_columns_to_with_timezone.cs +++ b/src/NzbDrone.Core/Datastore/Migration/061_postgres_update_timestamp_columns_to_with_timezone.cs @@ -8,6 +8,8 @@ namespace NzbDrone.Core.Datastore.Migration { protected override void MainDbUpgrade() { + Delete.FromTable("Commands").AllRows(); + Alter.Table("AlbumReleases").AlterColumn("ReleaseDate").AsDateTimeOffset().Nullable(); Alter.Table("Albums").AlterColumn("LastInfoSync").AsDateTimeOffset().Nullable(); Alter.Table("Albums").AlterColumn("ReleaseDate").AsDateTimeOffset().Nullable();