19 lines
454 B
C#
19 lines
454 B
C#
|
namespace Weee.Migrations
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Data.Entity.Migrations;
|
|||
|
|
|||
|
public partial class addLCAlistDefaultPurpose : DbMigration
|
|||
|
{
|
|||
|
public override void Up()
|
|||
|
{
|
|||
|
AddColumn("dbo.LCAs", "ListDefaultPurpose", c => c.String(nullable: true, maxLength: 256));
|
|||
|
}
|
|||
|
|
|||
|
public override void Down()
|
|||
|
{
|
|||
|
DropColumn("dbo.LCAs", "ListDefaultPurpose");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|