When we scan a library, store the last write time for a file so we can skip page calculation if there were no modifications.
This commit is contained in:
parent
f77b0ec552
commit
f85918b5bf
7 changed files with 803 additions and 4 deletions
|
|
@ -318,6 +318,9 @@ namespace API.Data.Migrations
|
|||
b.Property<int>("Format")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<DateTime>("LastModified")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<int>("Pages")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue