diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2023-01-16 00:13:54 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2023-01-16 00:13:54 +0100 |
| commit | 494fc9d7d1f08e05e1ee196bd0746900343b51dd (patch) | |
| tree | 07fbca21dcf27084d4ac01b0d7098fa61df57e65 /src/Migrations/DBModelSnapshot.cs | |
| parent | dbb09c75202f9d8a91e4babd599807462ecead9f (diff) | |
| download | blob-bin-494fc9d7d1f08e05e1ee196bd0746900343b51dd.tar.xz blob-bin-494fc9d7d1f08e05e1ee196bd0746900343b51dd.zip | |
feat: Fully implemented text/file api, almost finished autodelete service
Diffstat (limited to 'src/Migrations/DBModelSnapshot.cs')
| -rw-r--r-- | src/Migrations/DBModelSnapshot.cs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/Migrations/DBModelSnapshot.cs b/src/Migrations/DBModelSnapshot.cs index 8c9fb26..e63af59 100644 --- a/src/Migrations/DBModelSnapshot.cs +++ b/src/Migrations/DBModelSnapshot.cs @@ -9,7 +9,7 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion; namespace BlobBin.Migrations { - [DbContext(typeof(DB))] + [DbContext(typeof(Eva))] partial class DBModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) @@ -36,6 +36,10 @@ namespace BlobBin.Migrations b.Property<DateTime?>("DeletedAt") .HasColumnType("TEXT"); + b.Property<string>("DeletionKey") + .IsRequired() + .HasColumnType("TEXT"); + b.Property<long>("Length") .HasColumnType("INTEGER"); @@ -82,6 +86,10 @@ namespace BlobBin.Migrations b.Property<DateTime?>("DeletedAt") .HasColumnType("TEXT"); + b.Property<string>("DeletionKey") + .IsRequired() + .HasColumnType("TEXT"); + b.Property<long>("Length") .HasColumnType("INTEGER"); |
