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