using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Apollon.EntityFramework.Migrations { public partial class initial1 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "CompetitionImage", table: "Tournaments", type: "nvarchar(max)", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "CompetitionImage", table: "Tournaments"); } } }