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