28 lines
865 B
C#
28 lines
865 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace FinlyticTechnicals.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class SyncTechnicalsModelDrift : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_fta_technical_setups_IsActive_IsTopPick_QualityScore",
|
|
table: "fta_technical_setups",
|
|
columns: new[] { "IsActive", "IsTopPick", "QualityScore" });
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropIndex(
|
|
name: "IX_fta_technical_setups_IsActive_IsTopPick_QualityScore",
|
|
table: "fta_technical_setups");
|
|
}
|
|
}
|
|
}
|