Update bot market type
This commit is contained in:
@@ -259,6 +259,9 @@ namespace Managing.Infrastructure.Databases.Migrations
|
||||
b.Property<int>("Timeframe")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<int>("TradingType")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<DateTime>("UpdatedAt")
|
||||
.HasColumnType("timestamp with time zone");
|
||||
|
||||
@@ -348,8 +351,9 @@ namespace Managing.Infrastructure.Databases.Migrations
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<int>("Ticker")
|
||||
.HasColumnType("integer");
|
||||
b.Property<string>("Ticker")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<int>("TradeLosses")
|
||||
.HasColumnType("integer");
|
||||
@@ -357,6 +361,10 @@ namespace Managing.Infrastructure.Databases.Migrations
|
||||
b.Property<int>("TradeWins")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<string>("TradingType")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<DateTime>("UpdatedAt")
|
||||
.HasColumnType("timestamp with time zone");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user