Files
ersatztv/ErsatzTV.Infrastructure.MySql/Migrations/20250719141021_Add_TraktListLastMatch.cs
T

30 lines
776 B
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ErsatzTV.Infrastructure.MySql.Migrations
{
/// <inheritdoc />
public partial class Add_TraktListLastMatch : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<DateTime>(
name: "LastMatch",
table: "TraktList",
type: "datetime(6)",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "LastMatch",
table: "TraktList");
}
}
}