You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
462 B

namespace Sevomin.Models.Migrations
{
using System.Data.Entity.Migrations;
public partial class ParameterValueChange : DbMigration
{
public override void Up()
{
AddColumn("dbo.ParameterValues", "NumbericValue", c => c.Decimal(nullable: false, precision: 18, scale: 2));
}
public override void Down()
{
DropColumn("dbo.ParameterValues", "NumbericValue");
}
}
}