21 lines
685 B
C#
21 lines
685 B
C#
namespace Weee.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class addacceptrelpydate : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
AddColumn("dbo.ProductLCAReplyRequests", "AcceptReplyDate", c => c.DateTime(precision: 7, storeType: "datetime2"));
|
|
AddColumn("dbo.ProductLCAReplyRequests", "LastResentDate", c => c.DateTime(precision: 7, storeType: "datetime2"));
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
DropColumn("dbo.ProductLCAReplyRequests", "LastResentDate");
|
|
DropColumn("dbo.ProductLCAReplyRequests", "AcceptReplyDate");
|
|
}
|
|
}
|
|
}
|