Files
Vidly2/Vidly/Migrations/201901191449134_ApplyAnnotationsToCustomerName.cs
2019-01-19 17:08:56 +01:00

19 lines
461 B
C#

namespace Vidly.Migrations
{
using System;
using System.Data.Entity.Migrations;
public partial class ApplyAnnotationsToCustomerName : DbMigration
{
public override void Up()
{
AlterColumn("dbo.Customers", "Name", c => c.String(nullable: false, maxLength: 255));
}
public override void Down()
{
AlterColumn("dbo.Customers", "Name", c => c.String());
}
}
}