21 lines
677 B
C#
21 lines
677 B
C#
namespace Weee.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class addMaterialTransportColumns : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
AddColumn("dbo.LCARiskAssmtSurveyForm_MaterialTransport", "ScalarComment", c => c.String());
|
|
AddColumn("dbo.LCARiskAssmtSurveyForm_MaterialTransport", "ScalarUnit", c => c.String());
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
DropColumn("dbo.LCARiskAssmtSurveyForm_MaterialTransport", "ScalarUnit");
|
|
DropColumn("dbo.LCARiskAssmtSurveyForm_MaterialTransport", "ScalarComment");
|
|
}
|
|
}
|
|
}
|