19 lines
461 B
C#
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());
|
|
}
|
|
}
|
|
}
|