mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 13:57:20 -05:00
41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
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);
|
|
}
|
|
}
|
|
}
|