19 lines
460 B
C#
19 lines
460 B
C#
namespace Termo.Active.Database.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class InitMigrtion : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
AddColumn("dbo.performed_maintenance", "control_word", c => c.Int(nullable: false));
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
DropColumn("dbo.performed_maintenance", "control_word");
|
|
}
|
|
}
|
|
}
|