21 lines
668 B
C#
21 lines
668 B
C#
namespace Weee.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class UpdateMaterialColumn : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
AddColumn("dbo.ProductLCAProductSurveyForm_Materials", "MaterialTypeText", c => c.String());
|
|
DropColumn("dbo.ProductLCAProductSurveyForm_Materials", "MaterailType");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
AddColumn("dbo.ProductLCAProductSurveyForm_Materials", "MaterailType", c => c.String());
|
|
DropColumn("dbo.ProductLCAProductSurveyForm_Materials", "MaterialTypeText");
|
|
}
|
|
}
|
|
}
|