| 12345678910111213141516171819202122232425262728293031323334353637383940 | 
							- using Microsoft.EntityFrameworkCore.Migrations;
 
- #nullable disable
 
- namespace Jellyfin.Server.Implementations.Migrations
 
- {
 
-     /// <inheritdoc />
 
-     public partial class FixedCollation : Migration
 
-     {
 
-         /// <inheritdoc />
 
-         protected override void Up(MigrationBuilder migrationBuilder)
 
-         {
 
-             migrationBuilder.AlterColumn<string>(
 
-                 name: "Username",
 
-                 table: "Users",
 
-                 type: "TEXT",
 
-                 maxLength: 255,
 
-                 nullable: false,
 
-                 oldClrType: typeof(string),
 
-                 oldType: "TEXT",
 
-                 oldMaxLength: 255,
 
-                 oldCollation: "NOCASE");
 
-         }
 
-         /// <inheritdoc />
 
-         protected override void Down(MigrationBuilder migrationBuilder)
 
-         {
 
-             migrationBuilder.AlterColumn<string>(
 
-                 name: "Username",
 
-                 table: "Users",
 
-                 type: "TEXT",
 
-                 maxLength: 255,
 
-                 nullable: false,
 
-                 collation: "NOCASE",
 
-                 oldClrType: typeof(string),
 
-                 oldType: "TEXT",
 
-                 oldMaxLength: 255);
 
-         }
 
-     }
 
- }
 
 
  |