6775bb5dfa
- aggiunta migrazione DB
27 lines
714 B
C#
27 lines
714 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.MONO.Data.Migrations
|
|
{
|
|
public partial class AddElapsedValSMTask : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<double>(
|
|
name: "ElapsedVal",
|
|
table: "ScheduledMaintTask",
|
|
type: "double",
|
|
nullable: false,
|
|
defaultValue: 0.0);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "ElapsedVal",
|
|
table: "ScheduledMaintTask");
|
|
}
|
|
}
|
|
}
|