Files
egtbeamwall/EgtBEAMWALL.DataLayer/Migrations/202404261505131_UpdateLogMachineTable02.cs
T
Samuele Locatelli 3d87675d77 Update tab LOG macchina
- migrazioni
-metodi accesso DB
- bozza sync verso cloud
2024-04-26 18:55:50 +02:00

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));
}
}
}