LANCommander/LANCommander.Server.Data.SQLite/Migrations/20260627165809_AddToolAlwaysInstall.cs
2026-06-27 12:11:17 -05:00

29 lines
773 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace LANCommander.Migrations
{
/// <inheritdoc />
public partial class AddToolAlwaysInstall : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "AlwaysInstall",
table: "Tools",
type: "INTEGER",
nullable: false,
defaultValue: false);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "AlwaysInstall",
table: "Tools");
}
}
}