Files
cms_thermo_active/Thermo.Active.Database/Migrations/202103191626072_HistorySheetsCycle.cs
T
2021-03-19 17:26:34 +01:00

19 lines
443 B
C#

namespace Thermo.Active.Database.Migrations
{
using System;
using System.Data.Entity.Migrations;
public partial class HistorySheetsCycle : DbMigration
{
public override void Up()
{
AddColumn("dbo.HistorySheets", "NumDone", c => c.Short(nullable: false));
}
public override void Down()
{
DropColumn("dbo.HistorySheets", "NumDone");
}
}
}