From 494fc9d7d1f08e05e1ee196bd0746900343b51dd Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Mon, 16 Jan 2023 00:13:54 +0100 Subject: feat: Fully implemented text/file api, almost finished autodelete service --- src/Migrations/DBModelSnapshot.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/Migrations/DBModelSnapshot.cs') 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("DeletedAt") .HasColumnType("TEXT"); + b.Property("DeletionKey") + .IsRequired() + .HasColumnType("TEXT"); + b.Property("Length") .HasColumnType("INTEGER"); @@ -82,6 +86,10 @@ namespace BlobBin.Migrations b.Property("DeletedAt") .HasColumnType("TEXT"); + b.Property("DeletionKey") + .IsRequired() + .HasColumnType("TEXT"); + b.Property("Length") .HasColumnType("INTEGER"); -- cgit v1.3