using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Modules.Library.Database.Migrations { /// public partial class M002 : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "Url", table: "MediaInfos", newName: "ObjectId"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "ObjectId", table: "MediaInfos", newName: "Url"); } } }