LANCommander/LANCommander.Server.Data.PostgreSQL/Migrations/20260708041444_AddRuntimePlatforms.cs

40 lines
1.1 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace LANCommander.Server.Data.PostgreSQL.Migrations
{
/// <inheritdoc />
public partial class AddRuntimePlatforms : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "Platforms",
table: "Scripts",
type: "integer",
nullable: false,
defaultValue: 0);
migrationBuilder.AddColumn<int>(
name: "Platforms",
table: "Actions",
type: "integer",
nullable: false,
defaultValue: 0);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Platforms",
table: "Scripts");
migrationBuilder.DropColumn(
name: "Platforms",
table: "Actions");
}
}
}