using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace AGSS.Migrations { /// public partial class usernew : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Email", table: "UserModels"); migrationBuilder.DropColumn( name: "Password", table: "UserModels"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Email", table: "UserModels", type: "text", nullable: false, defaultValue: ""); migrationBuilder.AddColumn( name: "Password", table: "UserModels", type: "text", nullable: false, defaultValue: ""); } } }