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
410 B

  1. namespace Sevomin.Models.Migrations
  2. {
  3. using System.Data.Entity.Migrations;
  4. public partial class DispalyFormat : DbMigration
  5. {
  6. public override void Up()
  7. {
  8. AddColumn("dbo.JobParameters", "DisplayFormat", c => c.String());
  9. }
  10. public override void Down()
  11. {
  12. DropColumn("dbo.JobParameters", "DisplayFormat");
  13. }
  14. }
  15. }