using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace OTSSignsOrchestrator.Core.Migrations { /// public partial class RenameShareBasePathToShareName : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "CifsShareBasePath", table: "CmsInstances", newName: "CifsShareName"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "CifsShareName", table: "CmsInstances", newName: "CifsShareBasePath"); } } }