using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace TournamentOrganizer.Migrations { /// public partial class TeamParticipantScore : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Score", table: "TeamParticipants", type: "INTEGER", nullable: false, defaultValue: 0); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Score", table: "TeamParticipants"); } } }