19 lines
479 B
C#
19 lines
479 B
C#
|
namespace Weee.Migrations
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Data.Entity.Migrations;
|
|||
|
|
|||
|
public partial class addReplyModeProductReplyRequest : DbMigration
|
|||
|
{
|
|||
|
public override void Up()
|
|||
|
{
|
|||
|
AddColumn("dbo.ProductLCAReplyRequests", "replyMode", c => c.Int(nullable: false, defaultValue:3));
|
|||
|
}
|
|||
|
|
|||
|
public override void Down()
|
|||
|
{
|
|||
|
DropColumn("dbo.ProductLCAReplyRequests", "replyMode");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|