| 1234567891011121314151617181920212223242526272829 | using Microsoft.EntityFrameworkCore.Migrations;#nullable disablenamespace Jellyfin.Server.Implementations.Migrations{    /// <inheritdoc />    public partial class UserCastReceiver : Migration    {        /// <inheritdoc />        protected override void Up(MigrationBuilder migrationBuilder)        {            migrationBuilder.AddColumn<string>(                name: "CastReceiverId",                table: "Users",                type: "TEXT",                maxLength: 32,                nullable: true);        }        /// <inheritdoc />        protected override void Down(MigrationBuilder migrationBuilder)        {            migrationBuilder.DropColumn(                name: "CastReceiverId",                table: "Users");        }    }}
 |