using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Backend.Migrations { /// public partial class AddSeasonSubcategoryTemplates : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "SubcategoryTemplatesJson", table: "Seasons", type: "text", nullable: false, defaultValue: "[]"); migrationBuilder.UpdateData( table: "Seasons", keyColumn: "Id", keyValue: 1, column: "SubcategoryTemplatesJson", value: "[]"); migrationBuilder.UpdateData( table: "Seasons", keyColumn: "Id", keyValue: 2, column: "SubcategoryTemplatesJson", value: "[]"); migrationBuilder.UpdateData( table: "Seasons", keyColumn: "Id", keyValue: 3, column: "SubcategoryTemplatesJson", value: "[]"); migrationBuilder.UpdateData( table: "Seasons", keyColumn: "Id", keyValue: 4, column: "SubcategoryTemplatesJson", value: "[]"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "SubcategoryTemplatesJson", table: "Seasons"); } } }