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

11 years ago
  1. namespace Sevomin.Models.Migrations
  2. {
  3. using System.Data.Entity.Migrations;
  4. public partial class ParameterValueChange : DbMigration
  5. {
  6. public override void Up()
  7. {
  8. AddColumn("dbo.ParameterValues", "NumbericValue", c => c.Decimal(nullable: false, precision: 18, scale: 2));
  9. }
  10. public override void Down()
  11. {
  12. DropColumn("dbo.ParameterValues", "NumbericValue");
  13. }
  14. }
  15. }