using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Data.Migrations.Postgresql { public partial class AddGameToEFClient : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "GameName", table: "EFClients", type: "integer", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "GameName", table: "EFClients"); } } }