using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Jellyfin.Server.Implementations.Migrations { /// public partial class AddNormalizedUsername : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { // this is the first part of the migration. Add the column. migrationBuilder.AddColumn( name: "NormalizedUsername", table: "Users", type: "TEXT", maxLength: 255, nullable: false, defaultValue: string.Empty); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "NormalizedUsername", table: "Users"); } } }