iotgateway/IoTGateway.DataAccess/Migrations/20240531142726_IsTrigger.cs
2024-05-31 22:58:58 +08:00

27 lines
706 B
C#

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