using Microsoft.EntityFrameworkCore.Migrations; using System; using System.Collections.Generic; namespace YTManager.Migrations { public partial class Madetagsrequired : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "UserTags", table: "Channels", nullable: false, oldClrType: typeof(List), oldNullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn>( name: "UserTags", table: "Channels", nullable: true, oldClrType: typeof(string[])); } } }