19 lines
425 B
C#
19 lines
425 B
C#
|
namespace Weee.Migrations
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Data.Entity.Migrations;
|
|||
|
|
|||
|
public partial class addSimaproParaProject : DbMigration
|
|||
|
{
|
|||
|
public override void Up()
|
|||
|
{
|
|||
|
AddColumn("dbo.SimaproParameters", "Project", c => c.String());
|
|||
|
}
|
|||
|
|
|||
|
public override void Down()
|
|||
|
{
|
|||
|
DropColumn("dbo.SimaproParameters", "Project");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|