19 lines
503 B
C#
19 lines
503 B
C#
namespace Weee.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class addProductTransportColumn : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
AddColumn("dbo.ProductLCAFabSurveyForm_Transports", "ParameterUnit", c => c.String(nullable:false, maxLength:10));
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
DropColumn("dbo.ProductLCAFabSurveyForm_Transports", "ParameterUnit");
|
|
}
|
|
}
|
|
}
|