using Microsoft.EntityFrameworkCore.Migrations; namespace LY.MicroService.IdentityServer.Migrations { public partial class RemoveFieldAvatarUrlWithIdentityUser : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "AvatarUrl", table: "AbpUsers"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "AvatarUrl", table: "AbpUsers", type: "varchar(128)", maxLength: 128, nullable: true) .Annotation("MySql:CharSet", "utf8mb4"); } } }