21 lines
723 B
C#
21 lines
723 B
C#
|
namespace Weee.Migrations
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Data.Entity.Migrations;
|
|||
|
|
|||
|
public partial class alterRefrigNullable : DbMigration
|
|||
|
{
|
|||
|
public override void Up()
|
|||
|
{
|
|||
|
AlterColumn("dbo.LCACommonSurveyForm_Refrigerants", "ParameterID", c => c.Int(nullable: true));
|
|||
|
AlterColumn("dbo.LCACommonSurveyForm_Refrigerants", "ParameterID2", c => c.Int(nullable: true));
|
|||
|
}
|
|||
|
|
|||
|
public override void Down()
|
|||
|
{
|
|||
|
AlterColumn("dbo.LCACommonSurveyForm_Refrigerants", "ParameterID", c => c.Int(nullable: false));
|
|||
|
AlterColumn("dbo.LCACommonSurveyForm_Refrigerants", "ParameterID2", c => c.Int(nullable: false));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|