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