* don't run pragma command on mysql * add not required pathhash * make media file path hash required * update changelog
62 lines
1.9 KiB
C#
62 lines
1.9 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace ErsatzTV.Infrastructure.MySql.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class Add_MediaFilePathHash : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropIndex(
|
|
name: "IX_MediaFile_Path",
|
|
table: "MediaFile");
|
|
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "Path",
|
|
table: "MediaFile",
|
|
type: "longtext",
|
|
nullable: true,
|
|
oldClrType: typeof(string),
|
|
oldType: "varchar(255)",
|
|
oldNullable: true)
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "PathHash",
|
|
table: "MediaFile",
|
|
type: "longtext",
|
|
nullable: true)
|
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "PathHash",
|
|
table: "MediaFile");
|
|
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "Path",
|
|
table: "MediaFile",
|
|
type: "varchar(255)",
|
|
nullable: true,
|
|
oldClrType: typeof(string),
|
|
oldType: "longtext",
|
|
oldNullable: true)
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_MediaFile_Path",
|
|
table: "MediaFile",
|
|
column: "Path",
|
|
unique: true);
|
|
}
|
|
}
|
|
}
|