migration

This commit is contained in:
Tizian.Breuch
2025-07-29 20:41:04 +02:00
parent 6fc6aaef3e
commit 9e6f668752
4 changed files with 22 additions and 10 deletions

View File

@@ -518,6 +518,9 @@ namespace Webshop.Infrastructure.Migrations
.ValueGeneratedOnAdd()
.HasColumnType("uuid");
b.Property<string>("Configuration")
.HasColumnType("jsonb");
b.Property<string>("Description")
.HasMaxLength(500)
.HasColumnType("character varying(500)");
@@ -530,10 +533,8 @@ namespace Webshop.Infrastructure.Migrations
.HasMaxLength(100)
.HasColumnType("character varying(100)");
b.Property<string>("PaymentGatewayType")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)");
b.Property<int>("PaymentGatewayType")
.HasColumnType("integer");
b.Property<decimal?>("ProcessingFee")
.HasPrecision(18, 2)