This commit is contained in:
masoodafar-web
2025-11-25 02:08:28 +03:30
parent 92a9a0e75d
commit 1b146b338f
5 changed files with 1395 additions and 2 deletions

View File

@@ -958,6 +958,9 @@ namespace CMSMicroservice.Infrastructure.Persistence.Migrations
b.Property<string>("LastModifiedBy")
.HasColumnType("nvarchar(max)");
b.Property<long>("NetworkBalance")
.HasColumnType("bigint");
b.Property<long>("UserId")
.HasColumnType("bigint");
@@ -976,6 +979,9 @@ namespace CMSMicroservice.Infrastructure.Persistence.Migrations
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"));
b.Property<long>("ChangeNerworkValue")
.HasColumnType("bigint");
b.Property<long>("ChangeValue")
.HasColumnType("bigint");
@@ -988,6 +994,9 @@ namespace CMSMicroservice.Infrastructure.Persistence.Migrations
b.Property<long>("CurrentBalance")
.HasColumnType("bigint");
b.Property<long>("CurrentNetworkBalance")
.HasColumnType("bigint");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");