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

namespace Sevomin.Models.Migrations
{
using System.Data.Entity.Migrations;
public partial class JobCreateDate : DbMigration
{
public override void Up()
{
AddColumn("dbo.Jobs", "CreateDate", c => c.DateTime(nullable: false));
}
public override void Down()
{
DropColumn("dbo.Jobs", "CreateDate");
}
}
}