Implement importing files from folder.

This commit is contained in:
2020-08-23 20:10:38 +01:00
parent bdcae3f80e
commit b698e75739
8 changed files with 874 additions and 9 deletions

View File

@@ -22,6 +22,8 @@ namespace RomRepoMgr.Database.Migrations
b.Property<DateTime>("CreatedOn").HasColumnType("TEXT");
b.Property<bool>("IsInRepo").HasColumnType("INTEGER");
b.Property<string>("Md5").HasColumnType("TEXT").HasMaxLength(32);
b.Property<string>("Sha1").HasColumnType("TEXT").HasMaxLength(40);