using Microsoft.EntityFrameworkCore.Migrations; namespace TOOHUCardAPI.Migrations { public partial class playerdatadoneforfrontfacing : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "PetEffect", table: "Users", type: "TEXT", nullable: true); migrationBuilder.AddColumn( name: "PetModel", table: "Users", type: "TEXT", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "PetEffect", table: "Users"); migrationBuilder.DropColumn( name: "PetModel", table: "Users"); } } }