3d87675d77
- migrazioni -metodi accesso DB - bozza sync verso cloud
19 lines
493 B
C#
19 lines
493 B
C#
namespace EgtBEAMWALL.DataLayer.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class UpdateLogMachineTable02 : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
AlterColumn("dbo.LogMachine", "DtSent", c => c.DateTime(precision: 0));
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
AlterColumn("dbo.LogMachine", "DtSent", c => c.DateTime(nullable: false, precision: 0));
|
|
}
|
|
}
|
|
}
|