MyBookmark/Modules.Library.Database/Migrations/20250114211854_M006.cs
2025-01-20 00:49:51 +03:00

40 lines
1.1 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Modules.Library.Database.Migrations
{
/// <inheritdoc />
public partial class M006 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "TypeFlag",
table: "Anime_Episodes",
newName: "Type");
migrationBuilder.AddColumn<string>(
name: "DurationType",
table: "Anime_Episodes",
type: "text",
nullable: false,
defaultValue: "");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "DurationType",
table: "Anime_Episodes");
migrationBuilder.RenameColumn(
name: "Type",
table: "Anime_Episodes",
newName: "TypeFlag");
}
}
}