Fixed Postgres Timezone Issues (part 2)

This commit is contained in:
Bogdan 2023-05-25 02:42:58 +03:00
parent 79d4e1a89a
commit 91fadd5430

View file

@ -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();
}
}
}