using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace GameList.Data.Migrations { /// public partial class AddPasswordHashVersion : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "PasswordHashVersion", table: "Players", type: "INTEGER", nullable: false, defaultValue: 1); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "PasswordHashVersion", table: "Players"); } } }