using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace PARR.DAL.Migrations
{
///
public partial class tblTemplatesAndRobotConfigurationsAddINdexes : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateIndex(
name: "IX_RobotConfigurations_TemplateId_RobotStatusCode",
table: "RobotConfigurations",
columns: new[] { "TemplateId", "RobotStatusCode" });
migrationBuilder.CreateIndex(
name: "IX_RobotConfigurations_TemplateId_TaskStatusCode",
table: "RobotConfigurations",
columns: new[] { "TemplateId", "TaskStatusCode" });
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropIndex(
name: "IX_RobotConfigurations_TemplateId_RobotStatusCode",
table: "RobotConfigurations");
migrationBuilder.DropIndex(
name: "IX_RobotConfigurations_TemplateId_TaskStatusCode",
table: "RobotConfigurations");
}
}
}