mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.9 KiB
61 lines
1.9 KiB
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); |
|
} |
|
} |
|
}
|
|
|