summaryrefslogtreecommitdiff
path: root/Migrations/HBContextModelSnapshot.cs
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2023-08-29 13:02:41 +1000
committerJake Mannens <jake@asger.xyz>2023-08-29 13:02:41 +1000
commite9f09559b80b83e12727fd24e90d8c7f31d64856 (patch)
treeffb8f6d0f4ccc54618ff73164bcd323635dcea71 /Migrations/HBContextModelSnapshot.cs
parentda640de1095395e28060211dfc9b6be82924bfd6 (diff)
Added width and height properties to media objects
Diffstat (limited to 'Migrations/HBContextModelSnapshot.cs')
-rw-r--r--Migrations/HBContextModelSnapshot.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Migrations/HBContextModelSnapshot.cs b/Migrations/HBContextModelSnapshot.cs
index e00f2d8..c6aef7a 100644
--- a/Migrations/HBContextModelSnapshot.cs
+++ b/Migrations/HBContextModelSnapshot.cs
@@ -102,6 +102,9 @@ namespace HyperBooru.Migrations
.IsRequired()
.HasColumnType("text");
+ b.Property<int>("Height")
+ .HasColumnType("integer");
+
b.Property<string>("LongDescription")
.HasColumnType("text");
@@ -112,6 +115,9 @@ namespace HyperBooru.Migrations
b.Property<string>("ShortDescription")
.HasColumnType("text");
+ b.Property<int>("Width")
+ .HasColumnType("integer");
+
b.ToTable("Media", (string)null);
});