using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace KoogleApp.Migrations { /// public partial class _003 : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "PlayerStatus", table: "Players", type: "int", nullable: false, defaultValue: 0); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "PlayerStatus", table: "Players"); } } }