19 lines
546 B
C#
19 lines
546 B
C#
namespace Weee.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class updateMaterialQuantityType : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
AlterColumn("dbo.ProductLCAProductSurveyForm_Materials", "Quantity", c => c.Decimal(nullable: false, precision: 24, scale: 12));
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
AlterColumn("dbo.ProductLCAProductSurveyForm_Materials", "Quantity", c => c.Int(nullable: false));
|
|
}
|
|
}
|
|
}
|