19 lines
463 B
C#
19 lines
463 B
C#
namespace Vidly.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class AddIsSubscribedToNewsLetter : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
AddColumn("dbo.Customers", "IsSubscribedToNewsLetter", c => c.Boolean(nullable: false));
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
DropColumn("dbo.Customers", "IsSubscribedToNewsLetter");
|
|
}
|
|
}
|
|
}
|