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

namespace Sevomin.Models.Migrations
{
using System;
using System.Data.Entity.Migrations;
public partial class Dovomin_Birthday_Made_Nullable : DbMigration
{
public override void Up()
{
AlterColumn("dbo.Dovomin", "BirthDate", c => c.DateTime());
}
public override void Down()
{
AlterColumn("dbo.Dovomin", "BirthDate", c => c.DateTime(nullable: false));
}
}
}