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