Add more hashes to database.

This commit is contained in:
2020-08-22 14:52:23 +01:00
parent 9323b48e43
commit 4b166c2e4a
5 changed files with 251 additions and 0 deletions

View File

@@ -76,6 +76,10 @@ namespace RomRepoMgr.Database
entity.HasIndex(e => e.Sha256);
entity.HasIndex(e => e.Sha384);
entity.HasIndex(e => e.Sha512);
entity.HasIndex(e => e.Size);
});