Fix NES header database hash field length.

This commit is contained in:
2021-12-08 21:46:39 +00:00
parent 8c5766ad88
commit fbd93d8e28
6 changed files with 10 additions and 8 deletions

View File

@@ -2277,7 +2277,8 @@ namespace Aaru.Database.Migrations
.HasColumnType("INTEGER");
b.Property<string>("Sha256")
.HasMaxLength(32)
.IsRequired()
.HasMaxLength(64)
.HasColumnType("TEXT");
b.Property<byte>("Submapper")