demo20230512/Migrations/202212051002000_updateOtherCompound.cs

19 lines
564 B
C#
Raw Permalink Normal View History

2023-05-12 10:20:28 +08:00
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));
}
}
}