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