migration

This commit is contained in:
Tizian.Breuch
2025-08-01 09:31:25 +02:00
parent 14daa831cb
commit f4c56c7648
3 changed files with 18 additions and 20 deletions

View File

@@ -160,10 +160,6 @@ namespace Webshop.Infrastructure.Migrations
.ValueGeneratedOnAdd()
.HasColumnType("uuid");
b.Property<string>("AddressType")
.HasMaxLength(50)
.HasColumnType("character varying(50)");
b.Property<string>("City")
.IsRequired()
.HasMaxLength(100)
@@ -186,6 +182,10 @@ namespace Webshop.Infrastructure.Migrations
.HasMaxLength(100)
.HasColumnType("character varying(100)");
b.Property<string>("HouseNumber")
.HasMaxLength(50)
.HasColumnType("character varying(50)");
b.Property<string>("LastName")
.IsRequired()
.HasMaxLength(100)
@@ -205,9 +205,8 @@ namespace Webshop.Infrastructure.Migrations
.HasMaxLength(255)
.HasColumnType("character varying(255)");
b.Property<string>("Street2")
.HasMaxLength(255)
.HasColumnType("character varying(255)");
b.Property<int>("Type")
.HasColumnType("integer");
b.HasKey("Id");