manager-service/ManagerService/Migrations/20250814194130_Updatedmisc0.cs
Thomas Fransolet cbf3a3c7f5 Misc
2025-08-14 23:24:30 +02:00

29 lines
733 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ManagerService.Migrations
{
/// <inheritdoc />
public partial class Updatedmisc0 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "isActive",
table: "Sections",
newName: "IsActive");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "IsActive",
table: "Sections",
newName: "isActive");
}
}
}