Store original filename on import.

This commit is contained in:
2020-09-04 01:08:51 +01:00
parent 8911a34e3c
commit 5f0de466a7
5 changed files with 257 additions and 11 deletions

View File

@@ -26,6 +26,8 @@ namespace RomRepoMgr.Database.Migrations
b.Property<string>("Md5").HasColumnType("TEXT").HasMaxLength(32);
b.Property<string>("OriginalFileName").HasColumnType("TEXT");
b.Property<string>("Sha1").HasColumnType("TEXT").HasMaxLength(40);
b.Property<string>("Sha256").HasColumnType("TEXT").HasMaxLength(64);