Update the position count and initiator
This commit is contained in:
@@ -231,6 +231,9 @@ namespace Managing.Infrastructure.Databases.Migrations
|
||||
.HasPrecision(18, 8)
|
||||
.HasColumnType("numeric(18,8)");
|
||||
|
||||
b.Property<int>("LongPositionCount")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<string>("Name")
|
||||
.IsRequired()
|
||||
.HasMaxLength(255)
|
||||
@@ -244,6 +247,9 @@ namespace Managing.Infrastructure.Databases.Migrations
|
||||
.HasPrecision(18, 8)
|
||||
.HasColumnType("numeric(18,8)");
|
||||
|
||||
b.Property<int>("ShortPositionCount")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<DateTime>("StartupTime")
|
||||
.HasColumnType("timestamp with time zone");
|
||||
|
||||
@@ -668,6 +674,9 @@ namespace Managing.Infrastructure.Databases.Migrations
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<Guid>("InitiatorIdentifier")
|
||||
.HasColumnType("uuid");
|
||||
|
||||
b.Property<string>("MoneyManagementJson")
|
||||
.HasColumnType("text");
|
||||
|
||||
@@ -711,11 +720,11 @@ namespace Managing.Infrastructure.Databases.Migrations
|
||||
|
||||
b.HasKey("Identifier");
|
||||
|
||||
b.HasIndex("Date");
|
||||
|
||||
b.HasIndex("Identifier")
|
||||
.IsUnique();
|
||||
|
||||
b.HasIndex("InitiatorIdentifier");
|
||||
|
||||
b.HasIndex("OpenTradeId");
|
||||
|
||||
b.HasIndex("Status");
|
||||
|
||||
Reference in New Issue
Block a user