Fixed Postgres Timezone Issues (part 2)

pull/2557/head
Bogdan 1 year ago
parent 79d4e1a89a
commit 91fadd5430

@ -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();
}
}
}
Loading…
Cancel
Save