using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace TaskManager.EntityFramework.Migrations
{
///
public partial class z202506170002 : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "Module",
table: "TaskLogs",
type: "nvarchar(30)",
maxLength: 30,
nullable: true);
migrationBuilder.CreateIndex(
name: "IX_TaskLogs_Module",
table: "TaskLogs",
column: "Module");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropIndex(
name: "IX_TaskLogs_Module",
table: "TaskLogs");
migrationBuilder.DropColumn(
name: "Module",
table: "TaskLogs");
}
}
}