19 lines
489 B
C#
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");
|
|
}
|
|
}
|
|
}
|