LANCommander/LANCommander.Server.Data.SQLite/Migrations/20230121023958_Add64BitFlagForScripts.cs

27 lines
702 B
C#
Raw Permalink Normal View History

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