using Microsoft.EntityFrameworkCore.Migrations; namespace SharedLibraryCore.Migrations.Postgresql { public partial class AddGameNameToEFServer : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "GameName", table: "EFServers", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "GameName", table: "EFServers"); } } }