19 lines
564 B
C#
19 lines
564 B
C#
|
namespace Weee.Migrations
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Data.Entity.Migrations;
|
|||
|
|
|||
|
public partial class updateOtherCompound : DbMigration
|
|||
|
{
|
|||
|
public override void Up()
|
|||
|
{
|
|||
|
AlterColumn("dbo.OrganizationLCAFabSurveyForm_OtherCompounds", "ReferenceFileUrl", c => c.String(nullable: true, unicode: true));
|
|||
|
}
|
|||
|
|
|||
|
public override void Down()
|
|||
|
{
|
|||
|
AlterColumn("dbo.OrganizationLCAFabSurveyForm_OtherCompounds", "ReferenceFileUrl", c => c.String(nullable: true, unicode: false));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|