MobileInternetTechnolody/Chiara/Chiara/Migrations/20240609065607_AddEpisodeNumber.cs
2024-07-04 15:27:19 +08:00

30 lines
764 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Chiara.Migrations
{
/// <inheritdoc />
public partial class AddEpisodeNumber : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "EpisodeNumber",
table: "Episodes",
type: "integer",
nullable: false,
defaultValue: 0);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "EpisodeNumber",
table: "Episodes");
}
}
}