summaryrefslogtreecommitdiffstats
path: root/BlobBin/Migrations/DBModelSnapshot.cs
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2023-01-13 00:04:12 +0100
committerivarlovlie <git@ivarlovlie.no>2023-01-13 00:04:12 +0100
commit971c00b8f5977db9422eeafa47b262c1030bd4af (patch)
tree09ec55186f0f85d983b3be1754c6393123bc4363 /BlobBin/Migrations/DBModelSnapshot.cs
parenta9860b28f2be123d1f0bfad504165992a4c841ed (diff)
downloadblob-bin-971c00b8f5977db9422eeafa47b262c1030bd4af.tar.xz
blob-bin-971c00b8f5977db9422eeafa47b262c1030bd4af.zip
feat: working file upload
Diffstat (limited to 'BlobBin/Migrations/DBModelSnapshot.cs')
-rw-r--r--BlobBin/Migrations/DBModelSnapshot.cs13
1 files changed, 11 insertions, 2 deletions
diff --git a/BlobBin/Migrations/DBModelSnapshot.cs b/BlobBin/Migrations/DBModelSnapshot.cs
index b81feae..8c9fb26 100644
--- a/BlobBin/Migrations/DBModelSnapshot.cs
+++ b/BlobBin/Migrations/DBModelSnapshot.cs
@@ -43,12 +43,15 @@ namespace BlobBin.Migrations
.HasColumnType("TEXT");
b.Property<string>("Name")
- .IsRequired()
.HasColumnType("TEXT");
b.Property<string>("PasswordHash")
.HasColumnType("TEXT");
+ b.Property<string>("PublicId")
+ .IsRequired()
+ .HasColumnType("TEXT");
+
b.Property<bool>("Singleton")
.HasColumnType("INTEGER");
@@ -66,6 +69,9 @@ namespace BlobBin.Migrations
b.Property<string>("AutoDeleteAfter")
.HasColumnType("TEXT");
+ b.Property<string>("Content")
+ .HasColumnType("TEXT");
+
b.Property<DateTime>("CreatedAt")
.HasColumnType("TEXT");
@@ -83,12 +89,15 @@ namespace BlobBin.Migrations
.HasColumnType("TEXT");
b.Property<string>("Name")
- .IsRequired()
.HasColumnType("TEXT");
b.Property<string>("PasswordHash")
.HasColumnType("TEXT");
+ b.Property<string>("PublicId")
+ .IsRequired()
+ .HasColumnType("TEXT");
+
b.Property<bool>("Singleton")
.HasColumnType("INTEGER");