diff options
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"); |
