LANCommander/LANCommander.Server.Data.SQLite/Migrations/20260630234322_RemoveArchiveChangelog.cs

28 lines
732 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace LANCommander.Migrations
{
/// <inheritdoc />
public partial class RemoveArchiveChangelog : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Changelog",
table: "Archive");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "Changelog",
table: "Archive",
type: "TEXT",
nullable: true);
}
}
}