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

@@ -8,7 +8,7 @@ namespace Aaru.Database.Models;
public class NesHeaderInfo : BaseModel
{
/// <summary>ROM hash</summary>
[StringLength(32)]
[StringLength(64), Required]
public string Sha256 { get; set; }
/// <summary>If <c>true</c> vertical mirroring is hard-wired, horizontal or mapper defined otherwise</summary>
public bool NametableMirroring { get; set; }