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.

16 lines
402 B

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