mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-13 17:54:16 +01:00
add raw filesize to db
This commit is contained in:
parent
c2cc8e28f8
commit
efe7fe98f2
6 changed files with 812 additions and 3 deletions
|
|
@ -130,6 +130,10 @@ namespace MareSynchronosServer.Migrations
|
|||
.HasColumnType("character varying(40)")
|
||||
.HasColumnName("hash");
|
||||
|
||||
b.Property<long>("RawSize")
|
||||
.HasColumnType("bigint")
|
||||
.HasColumnName("raw_size");
|
||||
|
||||
b.Property<long>("Size")
|
||||
.HasColumnType("bigint")
|
||||
.HasColumnName("size");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue