19 lines
424 B
C#
19 lines
424 B
C#
|
namespace Weee.Migrations
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Data.Entity.Migrations;
|
|||
|
|
|||
|
public partial class FabAddColumn : DbMigration
|
|||
|
{
|
|||
|
public override void Up()
|
|||
|
{
|
|||
|
AddColumn("dbo.Fabs", "enable", c => c.Boolean(nullable: false, defaultValue: true));
|
|||
|
}
|
|||
|
|
|||
|
public override void Down()
|
|||
|
{
|
|||
|
DropColumn("dbo.Fabs", "enable");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|