demo20230512/Migrations/202212220618316_UpdateMaterialColumn.cs
2023-05-12 10:20:28 +08:00

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");
}
}
}