using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace RecNet.Infrastructure.Persistence.Migrations { /// public partial class GameVersion : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "GameVersions", columns: table => new { Version = table.Column(type: "character varying(32)", maxLength: 32, nullable: false), IsValid = table.Column(type: "boolean", nullable: false) }, constraints: table => { table.PrimaryKey("PK_GameVersions", x => x.Version); }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "GameVersions"); } } }