namespace Weee.Migrations { using System; using System.Data.Entity.Migrations; public partial class addYearlyParameterWarmGasType : DbMigration { public override void Up() { AddColumn("dbo.YearlyParameterTypes", "warmGasType", c => c.Int(nullable:true)); } public override void Down() { DropColumn("dbo.YearlyParameterTypes", "warmGasType"); } } }