using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace IM_API.Migrations { /// public partial class change_file : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "Type", table: "files", newName: "FileType"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "FileType", table: "files", newName: "Type"); } } }