Add delivery tracking fields to UserOrder entity

This commit is contained in:
masoodafar-web
2025-11-27 06:39:47 +03:30
parent 23ac9f77a1
commit 32b7cb3238
14 changed files with 1493 additions and 6 deletions

View File

@@ -851,6 +851,12 @@ namespace CMSMicroservice.Infrastructure.Persistence.Migrations
b.Property<string>("CreatedBy")
.HasColumnType("nvarchar(max)");
b.Property<string>("DeliveryDescription")
.HasColumnType("nvarchar(max)");
b.Property<int>("DeliveryStatus")
.HasColumnType("int");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
@@ -872,6 +878,9 @@ namespace CMSMicroservice.Infrastructure.Persistence.Migrations
b.Property<int>("PaymentStatus")
.HasColumnType("int");
b.Property<string>("TrackingCode")
.HasColumnType("nvarchar(max)");
b.Property<long?>("TransactionId")
.HasColumnType("bigint");