Files
egtbeamwall/EgtBEAMWALL.DataLayer/Migrations/202404291620416_UpdateLogMachineTable04.cs
T
2024-05-28 11:28:43 +02:00

19 lines
489 B
C#

namespace EgtBEAMWALL.DataLayer.Migrations
{
using System;
using System.Data.Entity.Migrations;
public partial class UpdateLogMachineTable04 : DbMigration
{
public override void Up()
{
AddColumn("dbo.LogMachine", "ProjCloudId", c => c.Int(nullable: false, defaultValue: 0, defaultValueSql: "0"));
}
public override void Down()
{
DropColumn("dbo.LogMachine", "ProjCloudId");
}
}
}