Store path in database.

This commit is contained in:
2020-09-06 20:15:29 +01:00
parent 9ee547e83e
commit 4b86bbdab6
5 changed files with 620 additions and 272 deletions

View File

@@ -41,5 +41,7 @@ namespace RomRepoMgr.Database.Models
public ulong FileId { get; set; }
public ulong MachineId { get; set; }
public DateTime? FileLastModification { get; set; }
[StringLength(4096)]
public string Path { get; set; }
}
}