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.

18 lines
480 B

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